Skip to content

Commit

Permalink
0.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
akarneliuk committed Nov 13, 2021
1 parent 0110c06 commit 7a93e31
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,10 @@ Contributors
Dev Log
=======

Release **0.6.4**:

- Minor bug-fixing.

Release **0.6.3**:

- Implemented ``prefix`` key in the ``Update`` message.
Expand Down Expand Up @@ -302,7 +306,7 @@ Release **0.1.0**:

(c)2020-2021, karneliuk.com

.. |version| image:: https://img.shields.io/static/v1?label=latest&message=v0.6.3&color=success
.. |version| image:: https://img.shields.io/static/v1?label=latest&message=v0.6.4&color=success
.. _version: https://pypi.org/project/pygnmi/
.. |tag| image:: https://img.shields.io/static/v1?label=status&message=stable&color=success
.. _tag: https://pypi.org/project/pygnmi/
Expand Down
2 changes: 1 addition & 1 deletion pygnmi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#(c)2019-2021, karneliuk.com

__version__ = "0.6.3"
__version__ = "0.6.4"
2 changes: 1 addition & 1 deletion pygnmi/arg_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def parse_args(msg):
parser.add_argument(
"-u", "--user",
type=str,
required=False,
required=True,
help="Username to use when connecting",
dest="username"
)
Expand Down
2 changes: 1 addition & 1 deletion scripts/pygnmicli
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def main():

elif args.operation == 'get':
print(f'Doing {args.operation} request to {args.target}...')
result = GC.get(args.gnmi_path, datatype=args.datastore, encoding='json')
result = GC.get(path=args.gnmi_path, datatype=args.datastore, encoding='json')

elif args.operation.startswith('set'):
print(f'Doing {args.operation} request to {args.target}...')
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
setup(
name = 'pygnmi',
packages = ['pygnmi', 'pygnmi.spec', 'pygnmi.artefacts'],
version = '0.6.3',
version = '0.6.4',
license='bsd-3-clause',
description = 'This repository contains pure Python implementation of the gNMI client to interact with the network functions.',
long_description = long_description,
long_description_content_type = 'text/x-rst',
author = 'Anton Karneliuk',
author_email = '[email protected]',
url = 'https://github.com/akarneliuk/pygnmi',
download_url = 'https://github.com/akarneliuk/pygnmi/archive/v0.6.3.tar.gz',
download_url = 'https://github.com/akarneliuk/pygnmi/archive/v0.6.4.tar.gz',
keywords = ['gnmi', 'automation', 'grpc', 'network'],
install_requires=[
'grpcio',
Expand Down

0 comments on commit 7a93e31

Please sign in to comment.