Skip to content

Commit 0ae5875

Browse files
committed
bump v0.9.0 stable
1 parent b6d2bc7 commit 0ae5875

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

ChangeLog.md

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

3+
## 0.9.0 - 2020-07-25
4+
5+
* #244 - tornado 6.x support, co-routine message handlers
6+
* #247 - switch to GitHub Actions for CI
7+
* #243 - reduce RDY updates when value hasn't changed (thanks @andyxning)
8+
* #232 - tornado 5.x support
9+
* #238 - enable IPV6 support (thanks @andyxning)
10+
* #230 - fix RDY handling when reducing `max_in_flight` (thanks @alpaker)
11+
* #227 - better pydocs for methods
12+
313
## 0.8.3 - 2018-11-11
414

515
* #223 - update default TLS version to 1.2 and support overriding via tls_options (thanks @duczen)

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,16 @@
4242

4343
# General information about the project.
4444
project = u'pynsq'
45-
copyright = u'2013, Matt Reiferson and Jehiah Czebotar'
45+
copyright = u'2020, Matt Reiferson and Jehiah Czebotar'
4646

4747
# The version info for the project you're documenting, acts as replacement for
4848
# |version| and |release|, also used in various other places throughout the
4949
# built documents.
5050
#
5151
# The short X.Y version.
52-
version = '0.8'
52+
version = '0.9'
5353
# The full version, including alpha/beta/rc tags.
54-
release = '0.8.3'
54+
release = '0.9.0'
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.9.0-beta2'
2+
__version__ = '0.9.0'

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.9.0-beta2'
19+
version = '0.9.0'
2020

2121

2222
setup(

0 commit comments

Comments
 (0)