From 5fea486598fd4b5afeb26cb23748081dd137cb4c Mon Sep 17 00:00:00 2001 From: mihaiparvu Date: Mon, 19 Apr 2021 18:05:39 +0300 Subject: [PATCH] Preparation for v3.7.0rc1 release --- docs/SSHLibrary-3.7.0rc1.rst | 79 ++ docs/SSHLibrary.html | 1434 ++++++++++++++++++++++++++-------- src/SSHLibrary/library.py | 1 - src/SSHLibrary/version.py | 2 +- 4 files changed, 1184 insertions(+), 332 deletions(-) create mode 100644 docs/SSHLibrary-3.7.0rc1.rst diff --git a/docs/SSHLibrary-3.7.0rc1.rst b/docs/SSHLibrary-3.7.0rc1.rst new file mode 100644 index 000000000..ba53bf630 --- /dev/null +++ b/docs/SSHLibrary-3.7.0rc1.rst @@ -0,0 +1,79 @@ +==================================== +SSHLibrary 3.7.0 Release Candidate 1 +==================================== + + +.. default-role:: code + + +SSHLibrary_ is a `Robot Framework`_ test library for SSH and SFTP. +SSHLibrary 3.7.0rc1 is a new release with several enhancements and bug fixes. +All issues targeted for SSHLibrary v3.7.0 can be found from +the `issue tracker`_. + +If you have pip_ installed, just run + +:: + + pip install --pre --upgrade robotframework-sshlibrary + +to install the latest release or use + +:: + + pip install robotframework-sshlibrary==3.7.0rc1 + +to install exactly this version. Alternatively you can download the source +distribution from PyPI_ and install it manually. + +SSHLibrary 3.7.0rc1 was released on Monday April 19, 2021. + +.. _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.7.0 + + +.. contents:: + :depth: 2 + :local: + +Full list of fixes and enhancements +=================================== + +.. list-table:: + :header-rows: 1 + + * - ID + - Type + - Priority + - Summary + - Added + * - `#129`_ + - bug + - medium + - Read gets in endless loop after encountering invalid encoding + - rc 1 + * - `#376`_ + - bug + - medium + - Unable to use 'Put File' with wildcard and scp=ALL + - rc 1 + * - `#368`_ + - enhancement + - medium + - Support main options from SSH config file + - rc 1 + * - `#379`_ + - enhancement + - medium + - Reconnect Keyword + - rc 1 + +Altogether 4 issues. View on the `issue tracker `__. + +.. _#129: https://github.com/robotframework/SSHLibrary/issues/129 +.. _#376: https://github.com/robotframework/SSHLibrary/issues/376 +.. _#368: https://github.com/robotframework/SSHLibrary/issues/368 +.. _#379: https://github.com/robotframework/SSHLibrary/issues/379 diff --git a/docs/SSHLibrary.html b/docs/SSHLibrary.html index 377816fab..a0e833440 100644 --- a/docs/SSHLibrary.html +++ b/docs/SSHLibrary.html @@ -1,165 +1,583 @@ - + + - + + @@ -557,7 +1111,7 @@

Opening library documentation failed

@@ -565,26 +1119,83 @@

Opening library documentation failed

- + + + + + + + + + diff --git a/src/SSHLibrary/library.py b/src/SSHLibrary/library.py index 87c9407fc..afa60ff42 100644 --- a/src/SSHLibrary/library.py +++ b/src/SSHLibrary/library.py @@ -69,7 +69,6 @@ class SSHLibrary(object): - `Importing` - `Time format` - `Boolean arguments` - - `Shortcuts` - `Keywords` = Connections and login = diff --git a/src/SSHLibrary/version.py b/src/SSHLibrary/version.py index 7cc9d22f2..b28c2e878 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.1.dev1' +VERSION = '3.7.0rc1'