Skip to content

Commit

Permalink
bump v0.2.27 stable
Browse files Browse the repository at this point in the history
  • Loading branch information
mreiferson committed Feb 16, 2014
1 parent 615fe88 commit 35e4829
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 5 deletions.
14 changes: 14 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

## Binaries

### 0.2.27 - 2014-02-17

**Upgrading from 0.2.26**: No backwards incompatible changes. We deprecated `--max-message-size`
in favor of `--max-msg-size` for consistency with the rest of the flag names.

IMPORTANT: this is another quick bug-fix release to address an issue in `nsqadmin` where templates
were incompatible with older versions of Go (pre-1.2).

* #306 - fix `nsqadmin` template compatibility (and formatting)
* #310 - fix `nsqadmin` behavior when E2E stats are disabled
* #309 - fix `nsqadmin` `INVALID_ERROR` on node page tombstone link
* #311/#312 - fix `nsqd` client metadata race condition and test flakiness
* #314 - fix `nsqd` test races (run w/ `-race` and `GOMAXPROCS=4`) deprecate `--max-message-size`

### 0.2.26 - 2014-02-06

**Upgrading from 0.2.25**: No backwards incompatible changes.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Python libraries are available out of the box (as well as many other [client
libraries][client_libraries]) and, if you're interested in building your own, there's a [protocol
spec][protocol].

The latest stable release is **[0.2.26][latest_tag]** ([ChangeLog][changelog]). We publish [binary
The latest stable release is **[0.2.27][latest_tag]** ([ChangeLog][changelog]). We publish [binary
releases][installing] for linux and darwin.

NOTE: master is our *development* branch and may not be stable at all times.
Expand Down Expand Up @@ -69,7 +69,7 @@ NSQ was designed and developed by Matt Reiferson ([@imsnakes][snakes_twitter]) a
[jehiah_twitter]: https://twitter.com/jehiah
[bitly]: https://bitly.com
[features_guarantees]: http://bitly.github.io/nsq/overview/features_and_guarantees.html
[latest_tag]: https://github.com/bitly/nsq/tree/v0.2.26
[latest_tag]: https://github.com/bitly/nsq/tree/v0.2.27
[contributors]: https://github.com/bitly/nsq/graphs/contributors
[client_libraries]: http://bitly.github.io/nsq/clients/client_libraries.html
[jekyll]: http://jekyllrb.com/
3 changes: 1 addition & 2 deletions contrib/nsq.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
%define name nsq
%define version 0.2.26
%define version 0.2.27
%define release 1
%define path usr/local
%define group Database/Applications
Expand Down Expand Up @@ -46,4 +46,3 @@ make PREFIX=/${path} DESTDIR=$RPM_BUILD_ROOT install
/%{path}/bin/nsq_to_nsq
/%{path}/bin/nsq_tail
/%{path}/bin/nsq_stat

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.26"
const BINARY_VERSION = "0.2.27"

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 35e4829

Please sign in to comment.