Skip to content

Commit

Permalink
bump v0.6.8 stable
Browse files Browse the repository at this point in the history
  • Loading branch information
mreiferson committed Sep 18, 2015
1 parent 729dbfd commit 77a7c0e
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 8 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.8 - 2015-09-18

* #129 - fix Snappy `uncompressed` declaration
* #130 - add `SIGINT` handler (thanks @jonmorehouse)
* #117 - add `set_max_in_flight()` to replace broken, deprecated `disabled()`
* #126 - add `msg_timeout` option for `IDENTIFY`

## 0.6.7 - 2015-04-07

* #124 - Tornado 4.x compatibility (thanks @mpe)
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

The official Python client library for [NSQ][nsq].

Latest stable release is **[0.6.7][latest_stable]**
Latest stable release is **[0.6.8][latest_stable]**

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

Expand All @@ -19,13 +19,13 @@ For HTML documentation, visit [https://pynsq.readthedocs.org/](https://pynsq.rea
These are the prerequisites for running tests:

sudo apt-get install libsnappy-dev
wget http://bitly-downloads.s3.amazonaws.com/nsq/nsq-0.2.28.linux-amd64.go1.2.1.tar.gz
tar zxvf nsq-0.2.28.linux-amd64.go1.2.1.tar.gz
sudo cp nsq-0.2.28.linux-amd64.go1.2.1/bin/nsqd nsq-0.2.28.linux-amd64.go1.2.1/bin/nsqlookupd /usr/local/bin
wget http://bitly-downloads.s3.amazonaws.com/nsq/nsq-0.3.5.linux-amd64.go1.4.2.tar.gz
tar zxvf nsq-0.3.5.linux-amd64.go1.4.2.tar.gz
sudo cp nsq-0.3.5.linux-amd64.go1.4.2/bin/{nsqd,nsqlookupd} /usr/local/bin

To run test cases:

python setup.py test

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

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


setup(
Expand Down

0 comments on commit 77a7c0e

Please sign in to comment.