Skip to content

Commit

Permalink
bump v0.3.1 stable
Browse files Browse the repository at this point in the history
  • Loading branch information
mreiferson committed Jan 22, 2015
1 parent 2ceaadb commit c0e16e2
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 4 deletions.
30 changes: 30 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,36 @@

## Binaries

### 0.3.1 - 2015-01-21

**Upgrading from 0.2.31**: No backwards incompatible changes.

This release contains minor bug fixes and feature additions.

There are a number of functionality improvements to the `nsq_stat` and `nsq_to_file` helper
applications (and general support for `#ephemeral` topics, broken in `0.2.30`).

Additionally, the TLS options continue to improve with support for setting `--tls-min-version` and
a work-around for a bug relating to `TLS_FALLBACK_SCSV` ([to be fixed in Go
1.5](https://go-review.googlesource.com/#/c/1776/)).

Features:

* #527 - nsq_stat: deprecate `--status-every` in favor of `--interval`
* #524 - nsq_stat: add `--count` option (thanks @nordicdyno)
* #518 - nsqd: set defaults for `--tls-min-version` and set TLS max version to 1.2
* #475/#513/#518 - nsqd: `--tls-required` can be disabled for HTTP / add `--tls-min-version`
(thanks @twmb)
* #496 - nsq_to_file: add `<PID>` to filename and rotation by size/interval (thanks @xiaost)
* #507 - nsq_stat: add rates (thanks @xiaost)
* #505 - nsqd: speed up failure path of `BytesToBase10` (thanks @iand)

Bugs:

* #522 - nsqadmin: fix `#ephemeral` topic deletion issues
* #509 - nsqd: fix `diskqueue` atomic rename on Windows (thanks @allgeek)
* #479 - nsqd: return `output_buffer_*` resolved settings in `IDENTIFY` response (thanks @tj)

### 0.3.0 - 2014-11-18

**Upgrading from 0.2.31**: 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 @@ -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.0][latest_tag]** ([ChangeLog][changelog]). We publish [binary
The latest stable release is **[0.3.1][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 @@ -91,7 +91,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.0
[latest_tag]: https://github.com/bitly/nsq/releases/tag/v0.3.1
[contributors]: https://github.com/bitly/nsq/graphs/contributors
[client_libraries]: http://nsq.io/clients/client_libraries.html
[jekyll]: http://jekyllrb.com/
Expand Down
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.0
%define version 0.3.1
%define release 1
%define path usr/local
%define group Database/Applications
Expand Down
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.3.0"
const BINARY_VERSION = "0.3.1"

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 c0e16e2

Please sign in to comment.