Skip to content

Commit d955216

Browse files
committed
bump v0.3.5
1 parent 29dfabc commit d955216

File tree

4 files changed

+17
-8
lines changed

4 files changed

+17
-8
lines changed

ChangeLog.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,28 @@
22

33
## Binaries
44

5+
### 0.3.5 - 2015-04-26
6+
7+
**Upgrading from 0.3.3**: Binaries contain no backwards incompatible changes.
8+
9+
This is another quick bug fix release to address the broken `nsqadmin` binary in the distribution
10+
(see #578).
11+
512
### 0.3.4 - 2015-04-26
613

14+
**WARNING**: please upgrade to `v0.3.5` to address the broken `nsqadmin` binary.
15+
716
**Upgrading from 0.3.3**: Binaries contain no backwards incompatible changes.
817

9-
**IMPORTANT**: this is a quick bug-fix release to fix the outdated `go-nsq` dependency in `v0.3.3`
18+
This is a quick bug fix release to fix the outdated `go-nsq` dependency in `v0.3.3`
1019
for the bundled utilities (see 6e8504e).
1120

1221
### 0.3.3 - 2015-04-26
1322

14-
**Upgrading from 0.3.2**: Binaries contain no backwards incompatible changes.
23+
**WARNING**: please upgrade to `v0.3.5` to address the outdated `go-nsq` dependency for the
24+
bundled utilities and the broken `nsqadmin` binary.
1525

16-
**WARNING**: please upgrade to `v0.3.4` to address the outdated `go-nsq` dependency for the
17-
bundled utilities.
26+
**Upgrading from 0.3.2**: Binaries contain no backwards incompatible changes.
1827

1928
This release is primarily a bug fix release after cleaning up and reorganizing the codebase.
2029
`nsqadmin` is now importable, which paves the way for completing #323. The bundled utilities

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Python libraries are available out of the box (as well as many other [client
2323
libraries][client_libraries]) and, if you're interested in building your own, there's a [protocol
2424
spec][protocol].
2525

26-
The latest stable release is **[0.3.4][latest_tag]** ([ChangeLog][changelog]). We publish [binary
26+
The latest stable release is **[0.3.5][latest_tag]** ([ChangeLog][changelog]). We publish [binary
2727
releases][installing] for linux and darwin.
2828

2929
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
8080
[jehiah_twitter]: https://twitter.com/jehiah
8181
[bitly]: https://bitly.com
8282
[features_guarantees]: http://nsq.io/overview/features_and_guarantees.html
83-
[latest_tag]: https://github.com/bitly/nsq/releases/tag/v0.3.4
83+
[latest_tag]: https://github.com/bitly/nsq/releases/tag/v0.3.5
8484
[contributors]: https://github.com/bitly/nsq/graphs/contributors
8585
[client_libraries]: http://nsq.io/clients/client_libraries.html
8686
[nsqio_twitter]: https://twitter.com/nsqio

contrib/nsq.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
%define name nsq
2-
%define version 0.3.4
2+
%define version 0.3.5
33
%define release 1
44
%define path usr/local
55
%define group Database/Applications

internal/version/binary.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"runtime"
66
)
77

8-
const Binary = "0.3.5-alpha"
8+
const Binary = "0.3.5"
99

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

0 commit comments

Comments
 (0)