Skip to content

Commit

Permalink
bump to 0.2.19 stable
Browse files Browse the repository at this point in the history
  • Loading branch information
mreiferson committed Apr 12, 2013
1 parent f4880d2 commit b18a7af
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 5 deletions.
10 changes: 9 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions INSTALLING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion contrib/nsq.spec
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion util/binary_version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package util

const BINARY_VERSION = "0.2.19-alpha"
const BINARY_VERSION = "0.2.19"

0 comments on commit b18a7af

Please sign in to comment.