Skip to content

Commit 259dc59

Browse files
authoredOct 24, 2021
Merge pull request nsqio#340 from ploxiln/bump_110
bump version to 1.1.0 and update ChangeLog
2 parents 54583b5 + 9205a84 commit 259dc59

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed
 

‎ChangeLog.md

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

3+
### 1.1.0 - 2021-10-25
4+
5+
* #275/#281 - support separate Logger for each log level (thanks @crazyweave)
6+
* #282 - consumer: reduce duplicate RDY (ready) count updates (thanks @andyxning)
7+
* #283 - remove redundant Config initialized check (thanks @SwanSpouse)
8+
* #313 - add Authorization header to lookup queries
9+
* #321 - consumer: fix panic with some invalid lookupd http addresses (thanks @martin-sucha)
10+
* #317 - producer: connect() code-style improvement (thanks @martin-sucha)
11+
* #330 - fix random backoff jitter on 32-bit architectures
12+
* #333 - consumer: re-use http client with keepalives for lookupd requests (thanks @JieTrancender)
13+
* #336 - producer: shutdown logging prefix consistent with other logging (thanks @karalabe)
14+
* #294 - docs: fix producer example (thanks @nikitabuyevich)
15+
* #307 - docs: add exit signal handling to consumer example
16+
* #324 - docs: fix Consumer.SetLogger() description (thanks @gabriel-vasile)
17+
* #297 - add AUTHORS file
18+
* #329/#330 - switch to GitHub Actions for CI
19+
20+
### 1.0.8 - 2019-12-24
21+
22+
Thanks to @judwhite, @vitaliytv, and @HaraldNordgren for contributing to testing and dependency management improvements
23+
24+
* #248 - support go modules
25+
* #249 - consumer: update RDY when setting MaxInFlight to 0
26+
* #267 - check response message size is positive (thanks @andyxning)
27+
* #271 - godoc for publisher and consumer (thanks @skateinmars)
28+
* #270 - set log level (thanks @YongHaoWu)
29+
* #255 - go vet tls.Config copying (thanks @iaburton)
30+
331
### 1.0.7 - 2017-08-04
432

533
**Upgrading from 1.0.6**: There are no backward incompatible changes.

‎version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
package nsq
22

33
// VERSION
4-
const VERSION = "1.0.8"
4+
const VERSION = "1.1.0"

0 commit comments

Comments
 (0)