diff --git a/CHANGES b/CHANGES index c3031f28cdf89b61cb7e1aeef175cc87b6d91290_Q0hBTkdFUw==..a51142bfdf9a6601b9df965ed0851a8f7e282a4f_Q0hBTkdFUw== 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,6 @@ Temporary, post-Paramiko changelog while we get our sh!t together. -## ssh 1.7.14 (2012-MM-DD) +## ssh 1.7.14 (2012-05-07) * #15: Implemented parameter substitution in SSHConfig, matching the implementation of `ssh_config(5)`. Thanks to Olle Lundberg for the patch. diff --git a/setup.py b/setup.py index c3031f28cdf89b61cb7e1aeef175cc87b6d91290_c2V0dXAucHk=..a51142bfdf9a6601b9df965ed0851a8f7e282a4f_c2V0dXAucHk= 100644 --- a/setup.py +++ b/setup.py @@ -50,7 +50,7 @@ setup(name = "ssh", - version = "1.7.13", + version = "1.7.14", description = "SSH2 protocol library", author = "Jeff Forcier", author_email = "jeff@bitprophet.org", diff --git a/ssh/__init__.py b/ssh/__init__.py index c3031f28cdf89b61cb7e1aeef175cc87b6d91290_c3NoL19faW5pdF9fLnB5..a51142bfdf9a6601b9df965ed0851a8f7e282a4f_c3NoL19faW5pdF9fLnB5 100644 --- a/ssh/__init__.py +++ b/ssh/__init__.py @@ -55,7 +55,7 @@ __author__ = "Jeff Forcier <jeff@bitprophet.org>" -__version__ = "1.7.13" +__version__ = "1.7.14" __license__ = "GNU Lesser General Public License (LGPL)"