Skip to content

Commit

Permalink
bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mreiferson committed Jul 26, 2013
1 parent 319c57f commit 96ef500
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
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.4.2][latest_stable]**
Latest stable release is **[0.5.0][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.4.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.4.2
[latest_stable]: https://pypi.python.org/pypi?:action=display&name=pynsq&version=0.5.0
[nsq]: https://github.com/bitly/nsq
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
# built documents.
#
# The short X.Y version.
version = '0.5.0-alpha'
version = '0.5.0'
# The full version, including alpha/beta/rc tags.
release = '0.5.0-alpha'
release = '0.5.0'

# 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/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def run():
tornado.ioloop.IOLoop.instance().start()

# also update in setup.py
__version__ = '0.5.0-alpha'
__version__ = '0.5.0'

__author__ = "Matt Reiferson <[email protected]>"
__all__ = ["Reader", "Writer", "run", "BackoffTimer", "Message", "Error", "LegacyReader",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def run_tests(self):


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


setup(
Expand Down

0 comments on commit 96ef500

Please sign in to comment.