From 2c69368c26153ea50f0e09b8db90a051757be06b Mon Sep 17 00:00:00 2001 From: Matt Reiferson Date: Mon, 11 Aug 2014 09:45:47 -0400 Subject: [PATCH] bump v0.6.4 --- ChangeLog.md | 7 +++++++ README.md | 4 ++-- docs/conf.py | 2 +- nsq/version.py | 2 +- setup.py | 2 +- 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index f1e7f04..8efb4c1 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,12 @@ # Changelog +## 0.6.4 - 2014-08-11 + + * #91 - change order of max attempts check + * #89 - properly handle `requeue(backoff=False)` when in backoff state + * #87 - verify keyword args passed to `Reader` + * #85 - fix `nsqlookupd` addresses specified without scheme + ## 0.6.3 - 2014-07-11 * #84 - use a named logger diff --git a/README.md b/README.md index 7b4322c..598ae7b 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.3][latest_stable]** +Latest stable release is **[0.6.4][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.3][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.3 +[latest_stable]: https://pypi.python.org/pypi?:action=display&name=pynsq&version=0.6.4 [nsq]: https://github.com/bitly/nsq diff --git a/docs/conf.py b/docs/conf.py index 3a45580..7b27867 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.3' +release = '0.6.4' # 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 db3e88d..62db725 100644 --- a/nsq/version.py +++ b/nsq/version.py @@ -1,2 +1,2 @@ # also update in setup.py -__version__ = '0.6.4-alpha' +__version__ = '0.6.4' diff --git a/setup.py b/setup.py index bfcc6c7..a52b672 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ def run_tests(self): # also update in nsq/version.py -version = '0.6.4-alpha' +version = '0.6.4' setup(