From 27afca3e71c6d67cb7fd2d05f8b273a6002d4bfa Mon Sep 17 00:00:00 2001 From: mihaiparvu Date: Fri, 18 Dec 2020 10:18:53 +0200 Subject: [PATCH] Preparation for 3.6.0 release --- docs/SSHLibrary-3.6.0.rst | 87 +++++++++++++++++++++++++++++++++++++++ docs/SSHLibrary.html | 2 +- src/SSHLibrary/version.py | 2 +- 3 files changed, 89 insertions(+), 2 deletions(-) create mode 100644 docs/SSHLibrary-3.6.0.rst diff --git a/docs/SSHLibrary-3.6.0.rst b/docs/SSHLibrary-3.6.0.rst new file mode 100644 index 000000000..a2445062e --- /dev/null +++ b/docs/SSHLibrary-3.6.0.rst @@ -0,0 +1,87 @@ +================ +SSHLibrary 3.6.0 +================ + + +.. default-role:: code + + +SSHLibrary_ is a `Robot Framework`_ test library for SSH and SFTP. +SSHLibrary 3.6.0 is a new release with several enhancements and bug fixes. +All issues targeted for SSHLibrary v3.6.0 can be found from +the `issue tracker`_. + +If you have pip_ installed, just run + +:: + + pip install --upgrade robotframework-sshlibrary + +to install the latest release or use + +:: + + pip install robotframework-sshlibrary==3.6.0 + +to install exactly this version. Alternatively you can download the source +distribution from PyPI_ and install it manually. + +SSHLibrary 3.6.0 was released on Friday December 18, 2020. + +.. _Robot Framework: http://robotframework.org +.. _SSHLibrary: https://github.com/robotframework/SSHLibrary +.. _pip: http://pip-installer.org +.. _PyPI: https://pypi.python.org/pypi/robotframework-sshlibrary +.. _issue tracker: https://github.com/robotframework/SSHLibrary/issues?q=milestone%3Av3.5.0 + + +.. contents:: + :depth: 2 + :local: + +Acknowledgements +================ + +Big thank you to the following contributors from the community: + +- @kallepokki for Support logins without authentication (`#370`_) +- @mika-b for Extend jump host functionality to password logins (`#369`_) + +Full list of fixes and enhancements +=================================== + +.. list-table:: + :header-rows: 1 + + * - ID + - Type + - Priority + - Summary + * - `#354`_ + - enhancement + - medium + - Presence of SSH config file breaks plain host connections + * - `#357`_ + - bug + - high + - Execute command with sudo appends incorrect newline to output + * - `#358`_ + - enhancement + - medium + - add support to preserve original timestamps (scp -p) + * - `#369`_ + - enhancement + - medium + - Extend jump host functionality to password logins + * - `#370`_ + - enhancement + - medium + - Support logins without authentication + +Altogether 5 issues. View on the `issue tracker `__. + +.. _#354: https://github.com/robotframework/SSHLibrary/issues/354 +.. _#357: https://github.com/robotframework/SSHLibrary/issues/357 +.. _#358: https://github.com/robotframework/SSHLibrary/issues/358 +.. _#369: https://github.com/robotframework/SSHLibrary/issues/369 +.. _#370: https://github.com/robotframework/SSHLibrary/issues/370 diff --git a/docs/SSHLibrary.html b/docs/SSHLibrary.html index a3970410e..377816fab 100644 --- a/docs/SSHLibrary.html +++ b/docs/SSHLibrary.html @@ -547,7 +547,7 @@ jQuery.extend({highlight:function(e,t,n,r){if(e.nodeType===3){var i=e.data.match(t);if(i){var s=document.createElement(n||"span");s.className=r||"highlight";var o=e.splitText(i.index);o.splitText(i[0].length);var u=o.cloneNode(true);s.appendChild(u);o.parentNode.replaceChild(s,o);return 1}}else if(e.nodeType===1&&e.childNodes&&!/(script|style)/i.test(e.tagName)&&!(e.tagName===n.toUpperCase()&&e.className===r)){for(var a=0;a diff --git a/src/SSHLibrary/version.py b/src/SSHLibrary/version.py index ac4a34225..cf6f24306 100644 --- a/src/SSHLibrary/version.py +++ b/src/SSHLibrary/version.py @@ -13,4 +13,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -VERSION = '3.6.0rc2.dev1' +VERSION = '3.6.0'