Skip to content

Commit

Permalink
bump 0.3.6 stable
Browse files Browse the repository at this point in the history
  • Loading branch information
mreiferson committed Apr 30, 2014
1 parent c79a282 commit 1bebffb
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
21 changes: 21 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
## go-nsq Change Log

### 0.3.6 - 2014-04-29

**Upgrading from 0.3.5**: There are no backward incompatible changes.

This release includes a significant internal refactoring, designed
to better encapsulate responsibility, see #19.

Specifically:

* make `Conn` public
* move transport responsibilities into `Conn` from `Reader`/`Writer`
* supply callbacks for hooking into `Conn` events

As part of the refactoring, a few additional clean exit related
issues were resolved:

* wait group now includes all exit related goroutines
* ensure that readLoop exits before exiting cleanup
* always check messagesInFlight at readLoop exit
* close underlying connection last

### 0.3.5 - 2014-04-05

**Upgrading from 0.3.4**: There are no backward incompatible changes.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

`go-nsq` is the official Go package for [NSQ][nsq].

The latest stable release is **[0.3.5](https://github.com/bitly/go-nsq/releases/tag/v0.3.5)**
The latest stable release is **[0.3.6](https://github.com/bitly/go-nsq/releases/tag/v0.3.6)**

[![Build Status](https://secure.travis-ci.org/bitly/go-nsq.png?branch=master)](http://travis-ci.org/bitly/go-nsq)

Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
// producers as well as low-level functions to communicate over the NSQ protocol.
package nsq

const VERSION = "0.3.6-alpha"
const VERSION = "0.3.6"

0 comments on commit 1bebffb

Please sign in to comment.