Skip to content

Commit

Permalink
bump to 0.2.20 stable
Browse files Browse the repository at this point in the history
  • Loading branch information
mreiferson committed May 13, 2013
1 parent eba421f commit 871baaf
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

## Binaries

### 0.2.20-alpha
### 0.2.20 - 2013-05-13

New Features / Enhancements:

* #197 - nsqadmin nodes list improvements (show nsqd -> lookupd conns)
* #192 - add golang runtime version to daemon version output
* #183 - ability to empty a topic
* #176 - optimizations to reduce garbage, copying, locking
* #184 - add table headers to nsqadmin channel view (thanks @elubow)
Expand All @@ -16,6 +18,9 @@ New Features / Enhancements:

Bug Fixes:

* #198 - fix fatal errors not actually being fatal
* #195 - fix delete topic does not delete all diskqueue files
* #193 - fix data race in channel requeue
* #185 - ensure that --data-path is writable on startup
* #182 - fix topic deletion ordering to prevent race conditions with lookupd/diskqueue
* #179 - deferred_count as gauge for statsd
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,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.19][latest_tag]** ([ChangeLog][changelog]). We publish [binary
The latest stable release is **[0.2.20][latest_tag]** ([ChangeLog][changelog]). 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 @@ -214,7 +214,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.19
[latest_tag]: https://github.com/bitly/nsq/tree/v0.2.20
[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 util/binary_version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"runtime"
)

const BINARY_VERSION = "0.2.20-alpha"
const BINARY_VERSION = "0.2.20"

func Version(app string) string {
return fmt.Sprintf("%s v%s (built w/%s)", app, BINARY_VERSION, runtime.Version())
Expand Down

0 comments on commit 871baaf

Please sign in to comment.