Skip to content

Commit

Permalink
Merge pull request #583 from vnitinv/master
Browse files Browse the repository at this point in the history
Getting ready for 2.0.0 release
  • Loading branch information
vnitinv authored Aug 30, 2016
2 parents ce56c13 + b0d5ded commit 3e65252
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,14 @@ This means that "non-programmers", for example the _Network Engineer_, can use t

### For "Programmers" - Open and Extensible

There is a growing interest and need to automate the network infrastructure into larger IT systems. To do so, traditional software programmers, DevOps, "hackers", etc. need an abstraction library of code to further those activities. _Junos PyEZ_ is designed for extensibility so that the programmer can quickly and easily add new widgets to the library in support of their specific project requirements. There is no need to "wait on the vendor" to provide new functionality. _Junos PyEZ_ is not specifically tied to any version of Junos or any Junos product family.
There is a growing interest and need to automate the network infrastructure into larger IT systems. To do so, traditional software programmers, DevOps, "hackers", etc. need an abstraction library of code to further those activities. _Junos PyEZ_ is designed for extensibility so that the programmer can quickly and easily add new widgets to the library in support of their specific project requirements. There is no need to "wait on the vendor" to provide new functionality. _Junos PyEZ_ is not specifically tied to any version of Junos or any Junos product family.

### Support

For questions and general support, please visit our [Google Group](https://groups.google.com/forum/#!forum/junos-python-ez)

You can also post your query on stackoverflow with __pyez__ [tag](http://stackoverflow.com/questions/tagged/pyez)

For documentation and more usage examples, please visit the _Junos PyEZ_ project page, [here](http://forums.juniper.net/t5/Automation/Where-can-I-learn-more-about-Junos-PyEZ/ta-p/280496).

Issues and bugs can be opened in the repository.
Expand All @@ -46,11 +48,11 @@ _Junos PyEZ_ is designed to provide the same capabilities as a user would have o

## NOTICE

As of release 1.1.0, _Junos PyEZ_ requires [ncclient](https://pypi.python.org/pypi/ncclient) version 0.4.3 or later.
As of release 2.0.0, _Junos PyEZ_ requires [ncclient](https://pypi.python.org/pypi/ncclient) version 0.5.2 or later.

## INSTALLATION

Installation requires Python 2.6 or 2.7 and associated `pip` tool
Installation requires Python 2.6 or 2.7 or >=3.4 and associated `pip` tool

pip install junos-eznc

Expand Down Expand Up @@ -114,7 +116,9 @@ Juniper Networks is actively contributing to and maintaining this repo. Please c

*Contributors:*

[Nitin Kumar](https://github.com/vnitinv), [Edward Arcuri](https://github.com/sdndude), [Ganesh Nalawade](https://github.com/ganeshnalawade)
[Nitin Kumar](https://github.com/vnitinv), [Edward Arcuri](https://github.com/sdndude), [Stacy Smith](https://github.com/stacywsmith)

* v2.0.0: [Ganesh Nalawade](https://github.com/ganeshnalawade), [Jainpriyal](https://github.com/Jainpriyal)

*Former Contributors:*

Expand Down
2 changes: 1 addition & 1 deletion lib/jnpr/junos/utils/start_shell.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def run(self, command, this=_SHELL_PROMPT):
:param str command: the shell command to execute
:param str this: the exected shell-prompt to wait for
:returns: result of the executed shell command (str)
:returns: (last_ok, result of the executed shell command (str) )
.. note:: as a *side-effect* this method will set the ``self.last_ok``
property. This property is set to ``True`` if ``$?`` is
Expand Down
4 changes: 2 additions & 2 deletions lib/jnpr/junos/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VERSION = "1.4.0.dev"
DATE = "2016-Mar-03"
VERSION = "2.0.0"
DATE = "2016-Aug-30"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
setup(
name="junos-eznc",
namespace_packages=['jnpr'],
version="1.4.0.dev",
author="Jeremy Schulman",
version="2.0.0",
author="Jeremy Schulman, Nitin Kumar",
author_email="[email protected]",
description=("Junos 'EZ' automation for non-programmers"),
license="Apache 2.0",
Expand Down

0 comments on commit 3e65252

Please sign in to comment.