Skip to content

Commit

Permalink
Release 1.4.0 (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
t-cas committed Jan 29, 2018
1 parent 2ab38df commit c683b1c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGES.rst
@@ -1,3 +1,8 @@
1.4.0 (01/29/2018)
------------------
- [Feature] :issue:`29`: Expose compression support from Paramiko (inherited from SSH).
Thanks to :user:`fmaupas` for the contribution.

1.3.2 (12/17/2017)
------------------
- [Bug] :issue:`23`: do not print `byte` but `str` in continuous output when running command with python3.
Expand Down
2 changes: 1 addition & 1 deletion jumpssh/pkg_info.json
@@ -1,4 +1,4 @@
{
"version": "1.3.2",
"version": "1.4.0",
"author": "Thibaud Castaing"
}
2 changes: 2 additions & 0 deletions jumpssh/session.py
Expand Up @@ -34,6 +34,7 @@ class SSHSession(object):
:param missing_host_key_policy: set policy to use when connecting to servers without a known host key.
This parameter is a class **instance** of type
:class:`paramiko.client.MissingHostKeyPolicy <paramiko.client.MissingHostKeyPolicy>`, not a **classes** itself
:param compress: set to True to turn on compression for this session
Usage::
Expand Down Expand Up @@ -444,6 +445,7 @@ def get_remote_session(
:param port: port to connect to the remote host (default 22)
:param password: password to be used for authentication with remote host
:param retry_interval: number of seconds between each retry
:param compress: set to True to turn on compression for this session
:return: session object of the remote host
:rtype: SSHSession
Expand Down

0 comments on commit c683b1c

Please sign in to comment.