From 589ea6fb12e7bc2d18e7620e586f194e899bb0ec Mon Sep 17 00:00:00 2001 From: Matt Reiferson Date: Thu, 1 Jun 2017 16:47:33 -0700 Subject: [PATCH] bump: v0.8.1 stable --- ChangeLog.md | 10 ++++++++-- docs/conf.py | 2 +- nsq/version.py | 2 +- setup.py | 2 +- 4 files changed, 11 insertions(+), 5 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 000549e..99df2bc 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,10 +1,16 @@ # Changelog +## 0.8.1 - 2017-06-01 + + * #177/#179 - improved RDY handling; don't decrement RDY; prevent edge case max in flight violations (thanks @alpaker) + * #175/#176 - prevent edge case max in flight violation (thanks @alpaker) + * #174 - ensure that writer only publishes to active connections (thanks @panaetov) + ## 0.8.0 - 2017-03-28 * #167/#168 - make forwards compatible nsqlookupd queries for NSQ v1.0.0-compat * #169 - send forwards compatible IDENTIFY attributes for NSQ v1.0.0-compat - * #170 - enable TCP_NODELAY on connections + * #170 - enable TCP_NODELAY on connections (thanks @protoss-player) ## 0.7.1 - 2016-12-21 @@ -72,7 +78,7 @@ ## 0.6.2 - 2014-02-21 IMPORTANT: this is a bug-fix release to address an issue where `Reader` would raise -and exception when receiving a heartbeat. +an exception when receiving a heartbeat. * #68 - fix heartbeat_interval bug diff --git a/docs/conf.py b/docs/conf.py index 8e5c44b..c0e6b94 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,7 +50,7 @@ # The short X.Y version. version = '0.8' # The full version, including alpha/beta/rc tags. -release = '0.8.0' +release = '0.8.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/nsq/version.py b/nsq/version.py index 9a81b62..bc94481 100644 --- a/nsq/version.py +++ b/nsq/version.py @@ -1,2 +1,2 @@ # also update in setup.py -__version__ = '0.8.0' +__version__ = '0.8.1' diff --git a/setup.py b/setup.py index 5e6161c..df95c01 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ def run_tests(self): # also update in nsq/version.py -version = '0.8.0' +version = '0.8.1' setup(