From b18a7af6c2c78edfba64f1416d33baf75867de60 Mon Sep 17 00:00:00 2001 From: Matt Reiferson Date: Thu, 11 Apr 2013 23:37:57 -0400 Subject: [PATCH] bump to 0.2.19 stable --- ChangeLog.md | 10 +++++++++- INSTALLING.md | 4 ++++ README.md | 4 ++-- contrib/nsq.spec | 2 +- util/binary_version.go | 2 +- 5 files changed, 17 insertions(+), 5 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index aec5a87da..569fdad56 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -2,12 +2,20 @@ ## Binaries -### 0.2.19-alpha +### 0.2.19 - 2013-04-11 + +**Upgrading from 0.2.18**: there are no backward incompatible changes in this release. New Features / Enhancements: + * #167 - 'go get' compatibility * #158 - allow nsqd clients to configure (or disable) heartbeats +Bug Fixes: + + * #171 - fix race conditions identified testing against go 1.1 (scheduler improvements) + * #160 - empty channel left in-flight count inconsistent + ### 0.2.18 - 2013-02-28 **Upgrading from 0.2.17**: all V2 clients of nsqd now receive heartbeats (previously only clients diff --git a/INSTALLING.md b/INSTALLING.md index f95ca1103..928522ea8 100644 --- a/INSTALLING.md +++ b/INSTALLING.md @@ -3,6 +3,8 @@ Pre-built binaries (`nsqd`, `nsqlookupd`, `nsqadmin`, and all example apps) for linux and darwin are available for download: + * [nsq-0.2.19.darwin-amd64.tar.gz][0.2.19_darwin] + * [nsq-0.2.19.linux-amd64.tar.gz][0.2.19_linux] * [nsq-0.2.18.darwin-amd64.tar.gz][0.2.18_darwin] * [nsq-0.2.18.linux-amd64.tar.gz][0.2.18_linux] * [nsq-0.2.17.darwin-amd64.tar.gz][0.2.17_darwin] @@ -46,6 +48,8 @@ Python module (for building Python readers) See [production notes](docs/production.md). +[0.2.19_darwin]: https://s3.amazonaws.com/bitly-downloads/nsq/nsq-0.2.19.darwin-amd64.tar.gz +[0.2.19_linux]: https://s3.amazonaws.com/bitly-downloads/nsq/nsq-0.2.19.linux-amd64.tar.gz [0.2.18_darwin]: https://s3.amazonaws.com/bitly-downloads/nsq/nsq-0.2.18.darwin-amd64.tar.gz [0.2.18_linux]: https://s3.amazonaws.com/bitly-downloads/nsq/nsq-0.2.18.linux-amd64.tar.gz [0.2.17_darwin]: https://s3.amazonaws.com/bitly-downloads/nsq/nsq-0.2.17.darwin-amd64.tar.gz diff --git a/README.md b/README.md index a45eb88a9..f532adad8 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ data format (messages can be JSON, [MsgPack][msgpack], [Protocol Buffers][go-pro else). Official Go and Python libraries are available out of the box and, if you're interested in building your own client, there's a [protocol spec][protocol] (see [client libraries](#client)). -The latest stable release is **[0.2.18][latest_tag]**. We publish [binary releases][binary] for +The latest stable release is **[0.2.19][latest_tag]**. We publish [binary releases][binary] for linux and darwin. NOTE: master is our *development* branch and may *not* be stable at all times. @@ -191,7 +191,7 @@ NSQ was designed and developed by Matt Reiferson ([@imsnakes][snakes_twitter]) a [design]: docs/design.md [docs]: docs [patterns]: docs/patterns.md -[latest_tag]: https://github.com/bitly/nsq/tree/v0.2.18 +[latest_tag]: https://github.com/bitly/nsq/tree/v0.2.19 [pynsq_pypi]: http://pypi.python.org/pypi/pynsq [nodensq_npm]: https://npmjs.org/package/nsq [ruby_nsq_rubygems]: http://rubygems.org/gems/ruby_nsq diff --git a/contrib/nsq.spec b/contrib/nsq.spec index 0215ee782..b643b19db 100644 --- a/contrib/nsq.spec +++ b/contrib/nsq.spec @@ -1,5 +1,5 @@ %define name nsq -%define version 0.2.18 +%define version 0.2.19 %define release 1 %define path usr/local %define group Database/Applications diff --git a/util/binary_version.go b/util/binary_version.go index 12f5b3f72..153c38329 100644 --- a/util/binary_version.go +++ b/util/binary_version.go @@ -1,3 +1,3 @@ package util -const BINARY_VERSION = "0.2.19-alpha" +const BINARY_VERSION = "0.2.19"