Skip to content

Commit

Permalink
bump v0.6.6 stable
Browse files Browse the repository at this point in the history
  • Loading branch information
mreiferson committed Feb 28, 2015
1 parent 69daab5 commit f5fb29d
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 5 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.6 - 2015-02-28

* #116 - fix `Message.requeue()` `delay` param
* #103 - suppor `#ephemeral` topics
* #106/#108/#110/#111/#114 - python 3.0 compatibility

## 0.6.5 - 2014-11-11

* #100 - add `Reader.close()`
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.5][latest_stable]**
Latest stable release is **[0.6.6][latest_stable]**

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

Expand All @@ -14,7 +14,7 @@ Latest stable release is **[0.6.5][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.5
[latest_stable]: https://pypi.python.org/pypi?:action=display&name=pynsq&version=0.6.6
[nsq]: https://github.com/bitly/nsq

## Running test cases
Expand Down
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.6-alpha'
release = '0.6.6'

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


setup(
Expand Down

0 comments on commit f5fb29d

Please sign in to comment.