# HG changeset patch # User Jeff Forcier <jeff@bitprophet.org> # Date 1352236121 28800 # Tue Nov 06 13:08:41 2012 -0800 # Node ID d9d57d2f47c76f08714daf89ab44a178fbd8a2f0 # Parent 25d21a1b50c5d4b82a185969adc77dcdefb6de31 Cut 1.8.1 diff --git a/NEWS b/NEWS --- a/NEWS +++ b/NEWS @@ -12,8 +12,8 @@ Releases ======== -v1.8.1 (DD MM YYYY) -------------------- +v1.8.1 (6th Nov 2012) +--------------------- * #90: Ensure that callbacks handed to `SFTPClient.get()` always fire at least once, even for zero-length files downloaded. Thanks to Github user `@enB` for diff --git a/paramiko/__init__.py b/paramiko/__init__.py --- a/paramiko/__init__.py +++ b/paramiko/__init__.py @@ -55,7 +55,7 @@ __author__ = "Jeff Forcier <jeff@bitprophet.org>" -__version__ = "1.8.0" +__version__ = "1.8.1" __license__ = "GNU Lesser General Public License (LGPL)" diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ setup(name = "paramiko", - version = "1.8.0", + version = "1.8.1", description = "SSH2 protocol library", author = "Jeff Forcier", author_email = "jeff@bitprophet.org",