Skip to content

Commit 77a7c0e

Browse files
committed
bump v0.6.8 stable
1 parent 729dbfd commit 77a7c0e

File tree

5 files changed

+15
-8
lines changed

5 files changed

+15
-8
lines changed

ChangeLog.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## 0.6.8 - 2015-09-18
4+
5+
* #129 - fix Snappy `uncompressed` declaration
6+
* #130 - add `SIGINT` handler (thanks @jonmorehouse)
7+
* #117 - add `set_max_in_flight()` to replace broken, deprecated `disabled()`
8+
* #126 - add `msg_timeout` option for `IDENTIFY`
9+
310
## 0.6.7 - 2015-04-07
411

512
* #124 - Tornado 4.x compatibility (thanks @mpe)

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
Latest stable release is **[0.6.7][latest_stable]**
5+
Latest stable release is **[0.6.8][latest_stable]**
66

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

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

2121
sudo apt-get install libsnappy-dev
22-
wget http://bitly-downloads.s3.amazonaws.com/nsq/nsq-0.2.28.linux-amd64.go1.2.1.tar.gz
23-
tar zxvf nsq-0.2.28.linux-amd64.go1.2.1.tar.gz
24-
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
22+
wget http://bitly-downloads.s3.amazonaws.com/nsq/nsq-0.3.5.linux-amd64.go1.4.2.tar.gz
23+
tar zxvf nsq-0.3.5.linux-amd64.go1.4.2.tar.gz
24+
sudo cp nsq-0.3.5.linux-amd64.go1.4.2/bin/{nsqd,nsqlookupd} /usr/local/bin
2525

2626
To run test cases:
2727

2828
python setup.py test
2929

30-
[latest_stable]: https://pypi.python.org/pypi?:action=display&name=pynsq&version=0.6.7
30+
[latest_stable]: https://pypi.python.org/pypi?:action=display&name=pynsq&version=0.6.8
3131
[nsq]: https://github.com/nsqio/nsq

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
# The short X.Y version.
5151
version = '0.6'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '0.6.8-alpha'
53+
release = '0.6.8'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.

nsq/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# also update in setup.py
2-
__version__ = '0.6.8-alpha'
2+
__version__ = '0.6.8'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def run_tests(self):
1616

1717

1818
# also update in nsq/version.py
19-
version = '0.6.8-alpha'
19+
version = '0.6.8'
2020

2121

2222
setup(

0 commit comments

Comments
 (0)