diff options
-rw-r--r-- | sites/www/changelog.rst | 3 | ||||
-rw-r--r-- | tasks.py | 2 |
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. @@ -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) |