Skip to content

Commit

Permalink
bump v0.9.0 stable
Browse files Browse the repository at this point in the history
  • Loading branch information
mreiferson committed Jul 25, 2020
1 parent b6d2bc7 commit 0ae5875
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## 0.9.0 - 2020-07-25

* #244 - tornado 6.x support, co-routine message handlers
* #247 - switch to GitHub Actions for CI
* #243 - reduce RDY updates when value hasn't changed (thanks @andyxning)
* #232 - tornado 5.x support
* #238 - enable IPV6 support (thanks @andyxning)
* #230 - fix RDY handling when reducing `max_in_flight` (thanks @alpaker)
* #227 - better pydocs for methods

## 0.8.3 - 2018-11-11

* #223 - update default TLS version to 1.2 and support overriding via tls_options (thanks @duczen)
Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,16 +42,16 @@

# General information about the project.
project = u'pynsq'
copyright = u'2013, Matt Reiferson and Jehiah Czebotar'
copyright = u'2020, Matt Reiferson and Jehiah Czebotar'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = '0.8'
version = '0.9'
# The full version, including alpha/beta/rc tags.
release = '0.8.3'
release = '0.9.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/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# also update in setup.py
__version__ = '0.9.0-beta2'
__version__ = '0.9.0'
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.9.0-beta2'
version = '0.9.0'


setup(
Expand Down

0 comments on commit 0ae5875

Please sign in to comment.