Skip to content

Commit

Permalink
bump v0.6.7 stable
Browse files Browse the repository at this point in the history
  • Loading branch information
mreiferson committed Apr 7, 2015
1 parent ebf42ee commit f34f6c5
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.6.7 - 2015-04-07

* #124 - Tornado 4.x compatibility
* #123 - fix exception when `Reader` is stopped before periodic timers start
* #121 - trigger the correct `CLOSE` event when socket closes

## 0.6.6 - 2015-02-28

* #116 - fix `Message.requeue()` `delay` param
Expand Down
8 changes: 4 additions & 4 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.6][latest_stable]**
Latest stable release is **[0.6.7][latest_stable]**

[![Build Status](https://secure.travis-ci.org/bitly/pynsq.png)](http://travis-ci.org/bitly/pynsq)

Expand All @@ -14,9 +14,6 @@ Latest stable release is **[0.6.6][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.6
[nsq]: https://github.com/bitly/nsq

## Running test cases

These are the prerequisite for running test cases.
Expand All @@ -29,3 +26,6 @@ These are the prerequisite for running test cases.
To run test cases:

python setup.py test

[latest_stable]: https://pypi.python.org/pypi?:action=display&name=pynsq&version=0.6.7
[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.7-alpha'
release = '0.6.7'

# 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.7-alpha'
__version__ = '0.6.7'
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.7-alpha'
version = '0.6.7'


setup(
Expand Down

0 comments on commit f34f6c5

Please sign in to comment.