Skip to content

Commit

Permalink
bump 0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mreiferson committed Jul 11, 2014
1 parent fe1622e commit 956e200
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
11 changes: 11 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -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
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.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)

Expand All @@ -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
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.2'
release = '0.6.3'

# 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.2'
__version__ = '0.6.3'
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.2'
version = '0.6.3'


setup(
Expand Down

0 comments on commit 956e200

Please sign in to comment.