Skip to content

Commit ed2e98c

Browse files
committed
0.6.4a
1 parent 7a93e31 commit ed2e98c

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ Release **0.1.0**:
306306

307307
(c)2020-2021, karneliuk.com
308308

309-
.. |version| image:: https://img.shields.io/static/v1?label=latest&message=v0.6.4&color=success
309+
.. |version| image:: https://img.shields.io/static/v1?label=latest&message=v0.6.4a&color=success
310310
.. _version: https://pypi.org/project/pygnmi/
311311
.. |tag| image:: https://img.shields.io/static/v1?label=status&message=stable&color=success
312312
.. _tag: https://pypi.org/project/pygnmi/

pygnmi/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#(c)2019-2021, karneliuk.com
22

3-
__version__ = "0.6.4"
3+
__version__ = "0.6.4a"

scripts/pygnmicli

+2-2
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,8 @@ def main():
109109
result.close()
110110
break
111111

112-
if result:
113-
print(result)
112+
if result and not args.print:
113+
print(json.dumps(result, indent=4))
114114

115115

116116
if __name__ == "__main__":

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
setup(
77
name = 'pygnmi',
88
packages = ['pygnmi', 'pygnmi.spec', 'pygnmi.artefacts'],
9-
version = '0.6.4',
9+
version = '0.6.4a',
1010
license='bsd-3-clause',
1111
description = 'This repository contains pure Python implementation of the gNMI client to interact with the network functions.',
1212
long_description = long_description,
1313
long_description_content_type = 'text/x-rst',
1414
author = 'Anton Karneliuk',
1515
author_email = 'anton@karneliuk.com',
1616
url = 'https://github.com/akarneliuk/pygnmi',
17-
download_url = 'https://github.com/akarneliuk/pygnmi/archive/v0.6.4.tar.gz',
17+
download_url = 'https://github.com/akarneliuk/pygnmi/archive/v0.6.4a.tar.gz',
1818
keywords = ['gnmi', 'automation', 'grpc', 'network'],
1919
install_requires=[
2020
'grpcio',

0 commit comments

Comments
 (0)