diff --git a/ChangeLog.md b/ChangeLog.md index 36cfc1f..76bc05c 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,12 @@ # Changelog +## 0.6.2 - 2014-02-21 + +IMPORTANT: this is a bug-fix release to address an issue where `Reader` would raise +and exception when receiving a heartbeat. + + * #68 - fix heartbeat_interval bug + ## 0.6.1 - 2014-02-17 IMPORTANT: this is a bug-fix release to address an issue preventing `Reader` from diff --git a/README.md b/README.md index 64b0029..cc9cc1f 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.1][latest_stable]** +Latest stable release is **[0.6.2][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.1][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.1 +[latest_stable]: https://pypi.python.org/pypi?:action=display&name=pynsq&version=0.6.2 [nsq]: https://github.com/bitly/nsq diff --git a/docs/conf.py b/docs/conf.py index bca951a..535b158 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.1' +release = '0.6.2' # 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 860bd1e..2792c92 100644 --- a/nsq/version.py +++ b/nsq/version.py @@ -1,2 +1,2 @@ # also update in setup.py -__version__ = '0.6.1' +__version__ = '0.6.2' diff --git a/setup.py b/setup.py index 069e65b..7c43543 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ def run_tests(self): # also update in nsq/version.py -version = '0.6.1' +version = '0.6.2' setup(