diff --git a/.travis.yml b/.travis.yml index 91d96f22..3720ca19 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,16 +1,14 @@ language: go go: - - 1.6.3 - - 1.7.3 + - 1.7.6 + - 1.8.3 env: - - 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 + - NSQ_DOWNLOAD=nsq-1.0.0-compat.linux-amd64.go1.8 GOARCH=amd64 + - NSQ_DOWNLOAD=nsq-1.0.0-compat.linux-amd64.go1.8 GOARCH=386 install: - go get github.com/golang/snappy script: diff --git a/ChangeLog.md b/ChangeLog.md index 64a3a13b..4ac303aa 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,5 +1,15 @@ ## go-nsq Change Log +### 1.0.7 - 2017-08-04 + +**Upgrading from 1.0.6**: There are no backward incompatible changes. + + * #97/#209 - consumer: retry nsqlookupd queries + * #179/#208 - consumer: redistribute RDY when connections are active + * #184/#201 - producer: fix misleading Stop() EOF (thanks @mengskysama) + * #203 - switch to golang/snappy (addressing potential snappy related deadlocks) + * #202 - consumer: fix backoff logging + ### 1.0.6 - 2016-06-04 **Upgrading from 1.0.5**: There are no backward incompatible changes. diff --git a/version.go b/version.go index 39d3264a..1f922ec8 100644 --- a/version.go +++ b/version.go @@ -5,4 +5,4 @@ package nsq // VERSION -const VERSION = "1.0.6" +const VERSION = "1.0.7"