diff --git a/Changelog b/Changelog index 76645553..aa325092 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,11 @@ +version 0.6.11 +------------- + +* Support for custom client capabilities +* Restructuring/refactoring of example scripts +* Minor bugfixes +* Minor unit test refactoring + version 0.6.10 ------------- diff --git a/README.md b/README.md index 4954e989..becbb125 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,7 @@ by [Leonidas Poulopoulos (@leopoul)](http://ncclient.org) and Einar Nilsen-Nygaa | Date | Release | Description | | :----: | :-----: | :---------- | +| 05/27/21 | `0.6.11` | See [release page](https://github.com/ncclient/ncclient/releases/tag/v0.6.11)| | 02/18/21 | `0.6.10` | See [release page](https://github.com/ncclient/ncclient/releases/tag/v0.6.10)| | 08/08/20 | `0.6.9` | See [release page](https://github.com/ncclient/ncclient/releases/tag/v0.6.9) | | 08/01/20 | `0.6.8` | Pulled due to accidental breaking API change | @@ -189,6 +190,7 @@ Thus, making a release becomes a simple process: ## Contributors +* v0.6.11: @musicinmybrain, @sstancu, @earies * v0.6.10: @vnitinv, @omaxx, @einarnn, @musicinmybrain, @tonynii, @sstancu, Martin Volf, @fredgan, @avisom, Viktor Velichkin, @ogenstad, @earies * v0.6.8: [Fred Gan](https://github.com/fredgan), @vnitinv, @kbijakowski, @iwanb, @badguy99, @liuyong, Andrew Mallory, William Lvory * v0.6.7: @vnitinv, @chaitu-tk, @sidhujasminder, @crutcha, @markgoddard, @ganeshrn, @songxl, @doesitblend, @psikala, @xuxiaowei0512, @muffizone diff --git a/README.rst b/README.rst index d91c4e65..4db7c944 100644 --- a/README.rst +++ b/README.rst @@ -104,6 +104,13 @@ Supported device handlers Changes \| brief ~~~~~~~~~~~~~~~~ +**v0.6.11** + +* Support for custom client capabilities +* Restructuring/refactoring of example scripts +* Minor bugfixes +* Minor unit test refactoring + **v0.6.10** * NETCONF call-home (RFC8071) support @@ -254,6 +261,7 @@ Changes \| brief Acknowledgements ~~~~~~~~~~~~~~~~ +- v0.6.11: @musicinmybrain, @sstancu, @earies - v0.6.10: @vnitinv, @omaxx, @einarnn, @musicinmybrain, @tonynii, @sstancu, Martin Volf, @fredgan, @avisom, Viktor Velichkin, @ogenstad, @earies - v0.6.9: [Fred Gan](https://github.com/fredgan) - v0.6.8: [Fred Gan](https://github.com/fredgan), @vnitinv, @kbijakowski, @iwanb, @badguy99, @liuyong, Andrew Mallory, William Lvory diff --git a/docs/source/conf.py b/docs/source/conf.py index 448f3486..26f975d5 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -48,7 +48,7 @@ # The short X.Y version. version = '0.6' # The full version, including alpha/beta/rc tags. -release = '0.6.10' +release = '0.6.11' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/ncclient/__init__.py b/ncclient/__init__.py index dca37d8a..f1c285a6 100644 --- a/ncclient/__init__.py +++ b/ncclient/__init__.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = (0,6,10) +__version__ = (0,6,11) import sys