From 8bfba31f916e4090a9244a6d341b30cf8db52afd Mon Sep 17 00:00:00 2001 From: mihaiparvu Date: Tue, 14 Aug 2018 11:26:56 +0300 Subject: [PATCH] Preparation for 3.1.1 release --- docs/SSHLibrary-3.1.1.rst | 64 +++++++++++++++++++++++++++++++++++++++ docs/SSHLibrary.html | 2 +- src/SSHLibrary/version.py | 2 +- 3 files changed, 66 insertions(+), 2 deletions(-) create mode 100644 docs/SSHLibrary-3.1.1.rst diff --git a/docs/SSHLibrary-3.1.1.rst b/docs/SSHLibrary-3.1.1.rst new file mode 100644 index 000000000..bea5ebbf3 --- /dev/null +++ b/docs/SSHLibrary-3.1.1.rst @@ -0,0 +1,64 @@ +================ +SSHLibrary 3.1.1 +================ + + +.. default-role:: code + + +SSHLibrary_ is a `Robot Framework`_ test library for SSH and SFTP. +SSHLibrary 3.1.1 is a new minor release fixing a blocking issue +related to copying symbolic links, and a couple of bug fixes. + +If you have pip_ installed, just run + +:: + + pip install --upgrade robotframework-sshlibrary + +to install the latest release or use + +:: + + pip install robotframework-sshlibrary==3.1.1 + +to install exactly this version. Alternatively you can download the source +distribution from PyPI_ and install it manually. + +SSHLibrary 3.1.1 was released on Tuesday August 14, 2018. + +.. _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.1.1 + + +List of fixed issues +==================== + +.. list-table:: + :header-rows: 1 + + * - ID + - Type + - Priority + - Summary + * - `#131`_ + - bug + - medium + - Get File does not resolve symlinks + * - `#255`_ + - bug + - medium + - Python tunneling issue with IPv6 + * - `#210`_ + - bug + - low + - Permissions are not properly set when copying a directory + +Altogether 3 issues. View on the `issue tracker `__. + +.. _#131: https://github.com/robotframework/SSHLibrary/issues/131 +.. _#255: https://github.com/robotframework/SSHLibrary/issues/255 +.. _#210: https://github.com/robotframework/SSHLibrary/issues/210 diff --git a/docs/SSHLibrary.html b/docs/SSHLibrary.html index 16614df72..8e91c458e 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 17fe7a496..dbd1e2e4b 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.1.1.dev1' +VERSION = '3.1.1'