Skip to content

Commit

Permalink
bump to stable 0.2.17 binary and 0.3.1 go library
Browse files Browse the repository at this point in the history
  • Loading branch information
mreiferson committed Feb 8, 2013
1 parent a7b1224 commit 03e848f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
4 changes: 2 additions & 2 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Binaries

### 0.2.17-alpha
### 0.2.17 - 2013-02-07

**Upgrading from 0.2.16**: IDENTIFY and SUB now return success responses (they previously only
responded to errors). The official Go and Python libraries are forwards/backwards compatible with
Expand Down Expand Up @@ -98,7 +98,7 @@ removed in a future release.

## Go Client Library

### 0.3.1-alpha
### 0.3.1 - 2013-02-07

**Upgrading from 0.3.0**: This release requires NSQ binary version `0.2.17+` for `TOUCH` support.

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.17.darwin-amd64.tar.gz][0.2.17_darwin]
* [nsq-0.2.17.linux-amd64.tar.gz][0.2.17_linux]
* [nsq-0.2.16.darwin-amd64.tar.gz][0.2.16_darwin]
* [nsq-0.2.16.linux-amd64.tar.gz][0.2.16_linux]
* [nsq-0.2.15.darwin-amd64.tar.gz][0.2.15_darwin]
Expand Down Expand Up @@ -44,6 +46,8 @@ Python module (for building Python readers)

$ ./test.sh

[0.2.17_darwin]: https://s3.amazonaws.com/bitly-downloads/nsq/nsq-0.2.17.darwin-amd64.tar.gz
[0.2.17_linux]: https://s3.amazonaws.com/bitly-downloads/nsq/nsq-0.2.17.linux-amd64.tar.gz
[0.2.16_darwin]: https://s3.amazonaws.com/bitly-downloads/nsq/nsq-0.2.16.darwin-amd64.tar.gz
[0.2.16_linux]: https://s3.amazonaws.com/bitly-downloads/nsq/nsq-0.2.16.linux-amd64.tar.gz
[0.2.15_darwin]: https://s3.amazonaws.com/bitly-downloads/nsq/nsq-0.2.15.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 @@ -21,7 +21,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.16][latest_tag]**. We publish [binary releases][binary] for
The latest stable release is **[0.2.17][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 @@ -194,7 +194,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.16
[latest_tag]: https://github.com/bitly/nsq/tree/v0.2.17
[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 nsq/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
// as a high-level Reader library to implement robust consumers.
package nsq

const VERSION = "0.3.1-alpha"
const VERSION = "0.3.1"
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.17-alpha"
const BINARY_VERSION = "0.2.17"

0 comments on commit 03e848f

Please sign in to comment.