Skip to content

Commit eee57a3

Browse files
committedAug 4, 2017
bump v1.0.7 stable
1 parent 973bf9a commit eee57a3

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
lines changed
 

‎.travis.yml

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
language: go
22
go:
3-
- 1.6.3
4-
- 1.7.3
3+
- 1.7.6
4+
- 1.8.3
55
env:
6-
- NSQ_DOWNLOAD=nsq-0.3.5.linux-amd64.go1.4.2 GOARCH=amd64
7-
- NSQ_DOWNLOAD=nsq-0.3.5.linux-amd64.go1.4.2 GOARCH=386
8-
- NSQ_DOWNLOAD=nsq-0.3.6.linux-amd64.go1.5.1 GOARCH=amd64
9-
- NSQ_DOWNLOAD=nsq-0.3.6.linux-amd64.go1.5.1 GOARCH=386
106
- NSQ_DOWNLOAD=nsq-0.3.7.linux-amd64.go1.6 GOARCH=amd64
117
- NSQ_DOWNLOAD=nsq-0.3.7.linux-amd64.go1.6 GOARCH=386
128
- NSQ_DOWNLOAD=nsq-0.3.8.linux-amd64.go1.6.2 GOARCH=amd64
139
- NSQ_DOWNLOAD=nsq-0.3.8.linux-amd64.go1.6.2 GOARCH=386
10+
- NSQ_DOWNLOAD=nsq-1.0.0-compat.linux-amd64.go1.8 GOARCH=amd64
11+
- NSQ_DOWNLOAD=nsq-1.0.0-compat.linux-amd64.go1.8 GOARCH=386
1412
install:
1513
- go get github.com/golang/snappy
1614
script:

‎ChangeLog.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
## go-nsq Change Log
22

3+
### 1.0.7 - 2017-08-04
4+
5+
**Upgrading from 1.0.6**: There are no backward incompatible changes.
6+
7+
* #97/#209 - consumer: retry nsqlookupd queries
8+
* #179/#208 - consumer: redistribute RDY when connections are active
9+
* #184/#201 - producer: fix misleading Stop() EOF (thanks @mengskysama)
10+
* #203 - switch to golang/snappy (addressing potential snappy related deadlocks)
11+
* #202 - consumer: fix backoff logging
12+
313
### 1.0.6 - 2016-06-04
414

515
**Upgrading from 1.0.5**: There are no backward incompatible changes.

‎version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
package nsq
66

77
// VERSION
8-
const VERSION = "1.0.6"
8+
const VERSION = "1.0.7"

0 commit comments

Comments
 (0)
Please sign in to comment.