Skip to content

Commit

Permalink
bump v0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mreiferson committed Apr 26, 2015
1 parent 6e8504e commit 09cd2f2
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,20 @@

## Binaries

### 0.3.4 - 2015-04-26

**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`
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.4` to address the outdated `go-nsq` dependency for the
bundled utilities.

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
received a few feature additions and bug fixes (mostly from bug fixes on the `go-nsq` side).
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.3][latest_tag]** ([ChangeLog][changelog]). We publish [binary
The latest stable release is **[0.3.4][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 @@ -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.3
[latest_tag]: https://github.com/bitly/nsq/releases/tag/v0.3.4
[contributors]: https://github.com/bitly/nsq/graphs/contributors
[client_libraries]: http://nsq.io/clients/client_libraries.html
[nsqio_twitter]: https://twitter.com/nsqio
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.3.3
%define version 0.3.4
%define release 1
%define path usr/local
%define group Database/Applications
Expand Down
2 changes: 1 addition & 1 deletion internal/version/binary.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"runtime"
)

const Binary = "0.3.4-alpha"
const Binary = "0.3.4"

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

0 comments on commit 09cd2f2

Please sign in to comment.