Skip to content

Commit c30014b

Browse files
committed
bump v0.8.3 stable
1 parent 916ef47 commit c30014b

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

ChangeLog.md

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

3+
## 0.8.3 - 2018-11-11
4+
5+
* #223 - update default TLS version to 1.2 and support overriding via tls_options (thanks @duczen)
6+
* #219 - fix py.test deprecated parameterization
7+
* #217/#218 - python 3 fixes (`mpub`, `AsyncConn`)
8+
* #214 - remove python 2.6 support
9+
* #216 - update PyPI address in docs (thanks @aaronjheng)
10+
* #212 - fix python 3.7 `async` keyword conflict
11+
* #211/#213/#220/#225 - misc test/CI related fixes
12+
* #210 - fix snappy/deflate high CPU load on disconnection (thanks @zexxonn)
13+
* #208 - fix sending snappy/deflate compressed data (thanks @SpaTmole)
14+
* #201 - specify tornado version in setup (thanks @jphines)
15+
* #200 - update URL for NSQ protocol in docs (thanks @mecforlove)
16+
317
## 0.8.2 - 2018-02-01
418

519
* #195 - compatibility with tornado 4.5 (thanks @ayamnikov)

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
# The short X.Y version.
5252
version = '0.8'
5353
# The full version, including alpha/beta/rc tags.
54-
release = '0.8.3-alpha'
54+
release = '0.8.3'
5555

5656
# The language for content autogenerated by Sphinx. Refer to documentation
5757
# 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.8.3-alpha'
2+
__version__ = '0.8.3'

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.8.3-alpha'
19+
version = '0.8.3'
2020

2121

2222
setup(

0 commit comments

Comments
 (0)