summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2017-02-20 21:23:44 -0800
committerJeff Forcier <jeff@bitprophet.org>2017-02-20 21:23:44 -0800
commit4b728fc3e4b99e8796d4b1cd182825efefbea639 (patch)
treefbddbf40248863c35d263e82f283ed04651b72c8
parentdd66e4d50543ed44aac8868bd5c15187c9044275 (diff)
parent97c8becb3a192aae89d6eb5b4c92c8084420baed (diff)
downloadparamiko-4b728fc3e4b99e8796d4b1cd182825efefbea639.tar.gz
Merge branch '2.0' into 2.1
-rw-r--r--sites/www/changelog.rst3
-rw-r--r--tasks.py2
2 files changed, 4 insertions, 1 deletions
diff --git a/sites/www/changelog.rst b/sites/www/changelog.rst
index 1f7fa62c..49555ec9 100644
--- a/sites/www/changelog.rst
+++ b/sites/www/changelog.rst
@@ -2,6 +2,9 @@
Changelog
=========
+* :release:`2.0.5 <2017-02-20>`
+* :release:`1.18.2 <2017-02-20>`
+* :release:`1.17.4 <2017-02-20>`
* :bug:`853 (1.17+)` Tweak how `RSAKey.__str__ <paramiko.rsakey.RSAKey>`
behaves so it doesn't cause ``TypeError`` under Python 3. Thanks to Francisco
Couzo for the report.
diff --git a/tasks.py b/tasks.py
index 61319aa9..41df8b27 100644
--- a/tasks.py
+++ b/tasks.py
@@ -32,7 +32,7 @@ def release(ctx, sdist=True, wheel=True, sign=True, dry_run=False):
Wraps invocations.packaging.publish to add baked-in docs folder.
"""
# Build docs first. Use terribad workaround pending invoke #146
- ctx.run("inv docs")
+ ctx.run("inv docs", pty=True, hide=False)
# Move the built docs into where Epydocs used to live
target = 'docs'
rmtree(target, ignore_errors=True)