Skip to content

Commit

Permalink
bump v0.6.2 stable
Browse files Browse the repository at this point in the history
  • Loading branch information
mreiferson committed Feb 21, 2014
1 parent aa38518 commit b9884c2
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.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
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.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)

Expand All @@ -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
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.1'
release = '0.6.2'

# 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.1'
__version__ = '0.6.2'
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.1'
version = '0.6.2'


setup(
Expand Down

0 comments on commit b9884c2

Please sign in to comment.