Skip to content

Commit

Permalink
bump v0.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mreiferson committed Aug 11, 2014
1 parent b5e5d6d commit 2c69368
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand All @@ -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
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion nsq/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# also update in setup.py
__version__ = '0.6.4-alpha'
__version__ = '0.6.4'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def run_tests(self):


# also update in nsq/version.py
version = '0.6.4-alpha'
version = '0.6.4'


setup(
Expand Down

0 comments on commit 2c69368

Please sign in to comment.