From d9552162e6ecd4f96acc7ec6433be7716ccef100 Mon Sep 17 00:00:00 2001 From: Matt Reiferson Date: Sun, 26 Apr 2015 15:25:02 -0700 Subject: [PATCH] bump v0.3.5 --- ChangeLog.md | 17 +++++++++++++---- README.md | 4 ++-- contrib/nsq.spec | 2 +- internal/version/binary.go | 2 +- 4 files changed, 17 insertions(+), 8 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 3aa7a44d0..4cab5fecf 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -2,19 +2,28 @@ ## Binaries +### 0.3.5 - 2015-04-26 + +**Upgrading from 0.3.3**: Binaries contain no backwards incompatible changes. + +This is another quick bug fix release to address the broken `nsqadmin` binary in the distribution +(see #578). + ### 0.3.4 - 2015-04-26 +**WARNING**: please upgrade to `v0.3.5` to address the broken `nsqadmin` binary. + **Upgrading from 0.3.3**: Binaries contain no backwards incompatible changes. -**IMPORTANT**: this is a quick bug-fix release to fix the outdated `go-nsq` dependency in `v0.3.3` +This is a quick bug fix release to fix the outdated `go-nsq` dependency in `v0.3.3` for the bundled utilities (see 6e8504e). ### 0.3.3 - 2015-04-26 -**Upgrading from 0.3.2**: Binaries contain no backwards incompatible changes. +**WARNING**: please upgrade to `v0.3.5` to address the outdated `go-nsq` dependency for the +bundled utilities and the broken `nsqadmin` binary. -**WARNING**: please upgrade to `v0.3.4` to address the outdated `go-nsq` dependency for the -bundled utilities. +**Upgrading from 0.3.2**: Binaries contain no backwards incompatible changes. This release is primarily a bug fix release after cleaning up and reorganizing the codebase. `nsqadmin` is now importable, which paves the way for completing #323. The bundled utilities diff --git a/README.md b/README.md index 435165b34..9cf757bcd 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,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.3.4][latest_tag]** ([ChangeLog][changelog]). We publish [binary +The latest stable release is **[0.3.5][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. @@ -80,7 +80,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://nsq.io/overview/features_and_guarantees.html -[latest_tag]: https://github.com/bitly/nsq/releases/tag/v0.3.4 +[latest_tag]: https://github.com/bitly/nsq/releases/tag/v0.3.5 [contributors]: https://github.com/bitly/nsq/graphs/contributors [client_libraries]: http://nsq.io/clients/client_libraries.html [nsqio_twitter]: https://twitter.com/nsqio diff --git a/contrib/nsq.spec b/contrib/nsq.spec index 03250316e..4656218c7 100644 --- a/contrib/nsq.spec +++ b/contrib/nsq.spec @@ -1,5 +1,5 @@ %define name nsq -%define version 0.3.4 +%define version 0.3.5 %define release 1 %define path usr/local %define group Database/Applications diff --git a/internal/version/binary.go b/internal/version/binary.go index 12d2d7b9d..49c037937 100644 --- a/internal/version/binary.go +++ b/internal/version/binary.go @@ -5,7 +5,7 @@ import ( "runtime" ) -const Binary = "0.3.5-alpha" +const Binary = "0.3.5" func String(app string) string { return fmt.Sprintf("%s v%s (built w/%s)", app, Binary, runtime.Version())