Skip to content

Commit

Permalink
bump v0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mreiferson committed Apr 26, 2015
1 parent d4aa412 commit 5ec424d
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 9 deletions.
29 changes: 29 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,35 @@

## Binaries

### 0.3.3 - 2015-04-10

**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
received a few feature additions and bug fixes (mostly from bug fixes on the `go-nsq` side).

Features:

* #569 - `nsqadmin`: re-org into importable package
* #562 - `nsq_to_{nsq,http}`: add `epsilon-greedy` mode (thanks @twmb)
* #547 - `nsqd`: adds `start_time` to `/stats` (thanks @ShawnSpooner)
* #544 - `nsq_to_http`: accept any `200` response as success (thanks @mikedewar)
* #548 - `nsq_to_http`: read entire request body (thanks @imgix)
* #552/#554/#555/#556/#561 - code cleanup and `/internal` package re-org (thanks @cespare)

Bugs:

* #573 - `nsqd`: don't persist metadata upon startup (thanks @xiaost)
* #560 - `nsqd`: do not print `EOF` error when client closes cleanly (thanks @twmb)
* #557 - `nsqd`: fix `--tls-required=tcp-https` with `--tls-client-auth-policy` (thanks @twmb)
* #545 - enable shell expansion in official Docker image (thanks @paddyforan)

NOTE: the bundled utilities are built against [`go-nsq` `v1.0.4`][go-nsq_104] and include all of
those features/fixes.

[go-nsq_104]: https://github.com/bitly/go-nsq/releases/tag/v1.0.4

### 0.3.2 - 2015-02-08

**Upgrading from 0.3.1**: Binaries contain no backwards incompatible changes however as of this
Expand Down
9 changes: 2 additions & 7 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.2][latest_tag]** ([ChangeLog][changelog]). We publish [binary
The latest stable release is **[0.3.3][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 @@ -64,10 +64,6 @@ NOTE: master is our *development* branch and may not be stable at all times.
<a href="http://eztable.com"><img src="http://nsq.io/static/img/eztable_logo.png" width="97" align="middle"/></a>&nbsp;&nbsp;
<a href="http://www.dotabuff.com"><img src="http://nsq.io/static/img/dotabuff_logo.png" width="97" align="middle"/></a>

## Documentation

Online documentation is available at [http://nsq.io][docs]

## Authors

NSQ was designed and developed by Matt Reiferson ([@imsnakes][snakes_twitter]) and Jehiah Czebotar
Expand All @@ -84,8 +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.2
[latest_tag]: https://github.com/bitly/nsq/releases/tag/v0.3.3
[contributors]: https://github.com/bitly/nsq/graphs/contributors
[client_libraries]: http://nsq.io/clients/client_libraries.html
[jekyll]: http://jekyllrb.com/
[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.2
%define version 0.3.3
%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.3-alpha"
const Binary = "0.3.3"

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

0 comments on commit 5ec424d

Please sign in to comment.