Skip to content

Commit

Permalink
bump v0.8.3 stable
Browse files Browse the repository at this point in the history
  • Loading branch information
mreiferson committed Nov 11, 2018
1 parent 916ef47 commit c30014b
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 0.8.3 - 2018-11-11

* #223 - update default TLS version to 1.2 and support overriding via tls_options (thanks @duczen)
* #219 - fix py.test deprecated parameterization
* #217/#218 - python 3 fixes (`mpub`, `AsyncConn`)
* #214 - remove python 2.6 support
* #216 - update PyPI address in docs (thanks @aaronjheng)
* #212 - fix python 3.7 `async` keyword conflict
* #211/#213/#220/#225 - misc test/CI related fixes
* #210 - fix snappy/deflate high CPU load on disconnection (thanks @zexxonn)
* #208 - fix sending snappy/deflate compressed data (thanks @SpaTmole)
* #201 - specify tornado version in setup (thanks @jphines)
* #200 - update URL for NSQ protocol in docs (thanks @mecforlove)

## 0.8.2 - 2018-02-01

* #195 - compatibility with tornado 4.5 (thanks @ayamnikov)
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
# The short X.Y version.
version = '0.8'
# The full version, including alpha/beta/rc tags.
release = '0.8.3-alpha'
release = '0.8.3'

# 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.8.3-alpha'
__version__ = '0.8.3'
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.8.3-alpha'
version = '0.8.3'


setup(
Expand Down

0 comments on commit c30014b

Please sign in to comment.