diff --git a/docs/SSHLibrary-3.8.0rc1.rst b/docs/SSHLibrary-3.8.0rc1.rst new file mode 100644 index 000000000..3f9c8366d --- /dev/null +++ b/docs/SSHLibrary-3.8.0rc1.rst @@ -0,0 +1,73 @@ +=================== +SSHLibrary 3.8.0rc1 +=================== + + +.. default-role:: code + + +SSHLibrary_ is a `Robot Framework`_ test library for SSH and SFTP. +SSHLibrary 3.8.0rc1 is a new release with several enhancements and bug fixes. +All issues targeted for SSHLibrary v3.8.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.8.0rc1 + +to install exactly this version. Alternatively you can download the source +distribution from PyPI_ and install it manually. + +SSHLibrary 3.8.0rc1 was released on Friday November 5, 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.8.0 + + +.. contents:: + :depth: 2 + :local: + +Full list of fixes and enhancements +=================================== + +.. list-table:: + :header-rows: 1 + + * - ID + - Type + - Priority + - Summary + - Added + * - `#388`_ + - bug + - medium + - Get File scp=ALL depends on nonstandard utility + - rc 1 + * - `#104`_ + - enhancement + - medium + - File Should Exist not allowing GLOB + - rc 1 + * - `#350`_ + - enhancement + - low + - execute command with sudo has a potential password exposure + - rc 1 + +Altogether 3 issues. View on the `issue tracker `__. + +.. _#388: https://github.com/robotframework/SSHLibrary/issues/388 +.. _#104: https://github.com/robotframework/SSHLibrary/issues/104 +.. _#350: https://github.com/robotframework/SSHLibrary/issues/350 diff --git a/docs/SSHLibrary.html b/docs/SSHLibrary.html index 70808aa8f..f1b13aabc 100644 --- a/docs/SSHLibrary.html +++ b/docs/SSHLibrary.html @@ -1101,7 +1101,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 789af9e1d..e4e9a0f00 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.7.1.dev1' +VERSION = '3.8.0rc1'