From 956e200859652a0d113ceafcf95711c2f232298e Mon Sep 17 00:00:00 2001 From: Matt Reiferson Date: Fri, 11 Jul 2014 10:52:39 +0200 Subject: [PATCH] bump 0.6.3 --- ChangeLog.md | 11 +++++++++++ README.md | 4 ++-- docs/conf.py | 2 +- nsq/version.py | 2 +- setup.py | 2 +- 5 files changed, 16 insertions(+), 5 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 76bc05c..f1e7f04 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,16 @@ # Changelog +## 0.6.3 - 2014-07-11 + + * #84 - use a named logger + * #83 - add `DEFLATE` support + * #80 - configurable `nsqlookupd` HTTP request timeouts + * #78 - fix potential `Reader` connection index error + * #77 - more flexible `nsqlookupd` configuration + * #76 - fix potential out-of-order backoff/resume + * #72 - `AUTH` support + * #73 - support 64char topic/channel names + ## 0.6.2 - 2014-02-21 IMPORTANT: this is a bug-fix release to address an issue where `Reader` would raise diff --git a/README.md b/README.md index cc9cc1f..7b4322c 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ `pynsq` is the official Python client library for [NSQ][nsq]. -Latest stable release is **[0.6.2][latest_stable]** +Latest stable release is **[0.6.3][latest_stable]** [![Build Status](https://secure.travis-ci.org/bitly/pynsq.png)](http://travis-ci.org/bitly/pynsq) @@ -14,5 +14,5 @@ Latest stable release is **[0.6.2][latest_stable]** For HTML documentation, visit [https://pynsq.readthedocs.org/](https://pynsq.readthedocs.org/) -[latest_stable]: https://pypi.python.org/pypi?:action=display&name=pynsq&version=0.6.2 +[latest_stable]: https://pypi.python.org/pypi?:action=display&name=pynsq&version=0.6.3 [nsq]: https://github.com/bitly/nsq diff --git a/docs/conf.py b/docs/conf.py index 535b158..3a45580 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,7 +50,7 @@ # The short X.Y version. version = '0.6' # The full version, including alpha/beta/rc tags. -release = '0.6.2' +release = '0.6.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/nsq/version.py b/nsq/version.py index 2792c92..1821181 100644 --- a/nsq/version.py +++ b/nsq/version.py @@ -1,2 +1,2 @@ # also update in setup.py -__version__ = '0.6.2' +__version__ = '0.6.3' diff --git a/setup.py b/setup.py index 7c43543..b20ae8b 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ def run_tests(self): # also update in nsq/version.py -version = '0.6.2' +version = '0.6.3' setup(