diff --git a/.travis.yml b/.travis.yml index b4d330ea..bf06a097 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,16 +2,16 @@ language: go go: - 1.4.3 - 1.5.3 - - 1.6 + - 1.6.2 env: - - NSQ_DOWNLOAD=nsq-0.3.0.linux-amd64.go1.3.3 GOARCH=amd64 - - NSQ_DOWNLOAD=nsq-0.3.0.linux-amd64.go1.3.3 GOARCH=386 - - NSQ_DOWNLOAD=nsq-0.3.1.linux-amd64.go1.4.1 GOARCH=amd64 - - NSQ_DOWNLOAD=nsq-0.3.1.linux-amd64.go1.4.1 GOARCH=386 - - NSQ_DOWNLOAD=nsq-0.3.2.linux-amd64.go1.4.1 GOARCH=amd64 - - NSQ_DOWNLOAD=nsq-0.3.2.linux-amd64.go1.4.1 GOARCH=386 - NSQ_DOWNLOAD=nsq-0.3.5.linux-amd64.go1.4.2 GOARCH=amd64 - NSQ_DOWNLOAD=nsq-0.3.5.linux-amd64.go1.4.2 GOARCH=386 + - NSQ_DOWNLOAD=nsq-0.3.6.linux-amd64.go1.5.1 GOARCH=amd64 + - NSQ_DOWNLOAD=nsq-0.3.6.linux-amd64.go1.5.1 GOARCH=386 + - NSQ_DOWNLOAD=nsq-0.3.7.linux-amd64.go1.6 GOARCH=amd64 + - NSQ_DOWNLOAD=nsq-0.3.7.linux-amd64.go1.6 GOARCH=386 + - NSQ_DOWNLOAD=nsq-0.3.8.linux-amd64.go1.6.2 GOARCH=amd64 + - NSQ_DOWNLOAD=nsq-0.3.8.linux-amd64.go1.6.2 GOARCH=386 install: - go get github.com/mreiferson/go-snappystream script: diff --git a/ChangeLog.md b/ChangeLog.md index 60e58b93..64a3a13b 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,12 @@ ## go-nsq Change Log +### 1.0.6 - 2016-06-04 + +**Upgrading from 1.0.5**: There are no backward incompatible changes. + + * #175 - consumer: reduce garbage generation in DecodeMessage (thanks @Dieterbe) + * #162 - producer: support `DeferredPublish` (thanks @DanielHeckrath) + ### 1.0.5 - 2015-09-19 **Upgrading from 1.0.4**: There are no backward incompatible changes. diff --git a/version.go b/version.go index 6bf16bc6..39d3264a 100644 --- a/version.go +++ b/version.go @@ -5,4 +5,4 @@ package nsq // VERSION -const VERSION = "1.0.5" +const VERSION = "1.0.6"