Skip to content
This repository was archived by the owner on Feb 24, 2023. It is now read-only.

Commit c351e48

Browse files
author
Leonidas Poulopoulos
committed
Prepare the next release(0.4.3)
1 parent a732b17 commit c351e48

File tree

7 files changed

+42
-21
lines changed

7 files changed

+42
-21
lines changed

Changelog

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
version 0.4.3
2+
-------------
3+
4+
Features
5+
========
6+
* Nexus exec_command operation
7+
* Allow specifying multiple cmd elements in Cisco Nexus
8+
* Update rpc for nested rpc-errors
9+
10+
Fixes
11+
=====
12+
* Prevent race condition in threading
13+
* Prevent hanging in session close
14+
115
version 0.4.2
216
-------------
317

MANIFEST.in

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
include *.rst requirements.txt LICENSE
2-
2+
graft docs
3+
graft examples

README

+6-7
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,14 @@ Device handlers are easy to implement and prove to be futureproof.
7272

7373
### Changes | brief
7474

75-
* Support for paramiko ProxyCommand via ~/.ssh/config parsing
76-
* Add Juniper-specific commit operations
77-
* Add Huawei devices support
78-
* Tests/Travis support
79-
* ioproc transport support for Juniper devices
80-
* Update Cisco CSR device handler
81-
* Many minor and major fixes
75+
* Nexus exec_command operation
76+
* Allow specifying multiple cmd elements in Cisco Nexus
77+
* Update rpc for nested rpc-errors
78+
* Prevent race condition in threading
79+
* Prevent hanging in session close
8280

8381
### Acknowledgements
82+
* v0.4.3: Thanks to all contributors and bug hunters; [Jeremy Schulman](https://github.com/jeremyschulman), [Ray Solomon](https://github.com/rsolomo), [Rick Sherman](https://github.com/shermdog), [subhak186](https://github.com/subhak186)
8483
* v0.4.2: Thanks to all contributors; [katharh](https://github.com/katharh), [Francis Luong (Franco)](https://github.com/francisluong), [Vincent Bernat](https://github.com/vincentbernat), [Juergen Brendel](https://github.com/juergenbrendel), [Quentin Loos](https://github.com/Kent1), [Ray Solomon](https://github.com/rsolomo), [Sebastian Wiesinger](https://github.com/sebastianw), [Ebben Aries](https://github.com/earies)
8584
* v0.4.1: Many thanks, primarily to [Jeremy Schulman](https://github.com/jeremyschulman) (Juniper) for providing his precious feedback,
8685
to [Ebben Aries](https://github.com/earies) (Juniper) for his contribution, to Juergen Brendel (Cisco) for the Cisco fork and

README.md

+8-10
Original file line numberDiff line numberDiff line change
@@ -75,16 +75,14 @@ Device handlers are easy to implement and prove to be futureproof.
7575

7676
### Changes | brief
7777

78-
* Support for paramiko ProxyCommand via ~/.ssh/config parsing
79-
* Add Juniper-specific commit operations
80-
* Add Huawei devices support
81-
* Tests/Travis support
82-
* ioproc transport support for Juniper devices
83-
* Update Cisco CSR device handler
84-
* Many minor and major fixes
78+
* Nexus exec_command operation
79+
* Allow specifying multiple cmd elements in Cisco Nexus
80+
* Update rpc for nested rpc-errors
81+
* Prevent race condition in threading
82+
* Prevent hanging in session close
8583

8684
### Acknowledgements
85+
* v0.4.3: Thanks to all contributors and bug hunters; [Jeremy Schulman](https://github.com/jeremyschulman), [Ray Solomon](https://github.com/rsolomo), [Rick Sherman](https://github.com/shermdog), [subhak186](https://github.com/subhak186)
8786
* v0.4.2: Thanks to all contributors; [katharh](https://github.com/katharh), [Francis Luong (Franco)](https://github.com/francisluong), [Vincent Bernat](https://github.com/vincentbernat), [Juergen Brendel](https://github.com/juergenbrendel), [Quentin Loos](https://github.com/Kent1), [Ray Solomon](https://github.com/rsolomo), [Sebastian Wiesinger](https://github.com/sebastianw), [Ebben Aries](https://github.com/earies)
88-
* v0.4.1: Many thanks, primarily to [Jeremy Schulman](https://github.com/jeremyschulman) (Juniper) for providing his precious feedback,
89-
to [Ebben Aries](https://github.com/earies) (Juniper) for his contribution, to Juergen Brendel (Cisco) for the Cisco fork and
90-
to all contributors from Cisco and Juniper.
87+
* v0.4.1: Many thanks, primarily to [Jeremy Schulman](https://github.com/jeremyschulman) (Juniper) for providing his precious feedback, to [Ebben Aries](https://github.com/earies) (Juniper) for his contribution, to Juergen Brendel (Cisco) for the Cisco fork and to all contributors from Cisco and Juniper.
88+

README.rst

+10-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ncclient: Python library for NETCONF clients
44
ncclient is a Python library that facilitates client-side scripting and
55
application development around the NETCONF protocol. ``ncclient`` was
66
developed by `Shikar Bhushan <http://schmizz.net>`_. It is now
7-
maintained by `Leonidas Poulopoulos (@leopoul) <http://ncclient.leopoul.com>`_
7+
maintained by `Leonidas Poulopoulos (@leopoul) <http://ncclient.org/ncclient>`_
88

99
Docs:
1010
`http://ncclient.readthedocs.org <http://ncclient.readthedocs.org>`_
@@ -91,6 +91,14 @@ Supported device handlers
9191
Changes \| brief
9292
~~~~~~~~~~~~~~~~
9393

94+
**v0.4.3**
95+
96+
- Nexus exec_command operation
97+
- Allow specifying multiple cmd elements in Cisco Nexus
98+
- Update rpc for nested rpc-errors
99+
- Prevent race condition in threading
100+
- Prevent hanging in session close
101+
94102
**v0.4.2**
95103

96104
- Support for paramiko ProxyCommand via ~/.ssh/config parsing
@@ -114,6 +122,7 @@ Changes \| brief
114122
Acknowledgements
115123
~~~~~~~~~~~~~~~~
116124

125+
- v0.4.3: Thanks to all contributors and bug hunters; `Jeremy Schulman <https://github.com/jeremyschulman>`_, `Ray Solomon <https://github.com/rsolomo>`_, `Rick Sherman <https://github.com/shermdog>`_, `subhak186 <https://github.com/subhak186>`_.
117126
- v0.4.2: Thanks to all contributors; `katharh <https://github.com/katharh>`_, `Francis Luong (Franco) <https://github.com/francisluong>`_, `Vincent Bernat <https://github.com/vincentbernat>`_, `Juergen Brendel <https://github.com/juergenbrendel>`_, `Quentin Loos <https://github.com/Kent1>`_, `Ray Solomon <https://github.com/rsolomo>`_, `Sebastian Wiesinger <https://github.com/sebastianw>`_, `Ebben Aries <https://github.com/earies>`_ .
118127
- v0.4.1: Many thanks, primarily to `Jeremy Schulman <https://github.com/jeremyschulman>`_ (Juniper) for providing his precious feedback, to `Eben Aries <https://github.com/earies>`_ (Juniper) for his contribution, to Juergen Brendel (Cisco) for the Cisco fork and to all contributors from Cisco and Juniper.
119128

ncclient/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = (0,4,2)
15+
__version__ = (0,4,3)
1616

1717
import sys
1818

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838

3939
setup(name='ncclient',
40-
version='0.4.2',
40+
version='0.4.3',
4141
description="Python library for NETCONF clients",
4242
long_description = long_description,
4343
author="Shikhar Bhushan, Leonidas Poulopoulos, Ebben Aries",

0 commit comments

Comments
 (0)