Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump version to 1.1.0 and update ChangeLog #340

Merged
merged 1 commit into from
Oct 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
## go-nsq Change Log

### 1.1.0 - 2021-10-25

* #275/#281 - support separate Logger for each log level (thanks @crazyweave)
* #282 - consumer: reduce duplicate RDY (ready) count updates (thanks @andyxning)
* #283 - remove redundant Config initialized check (thanks @SwanSpouse)
* #313 - add Authorization header to lookup queries
* #321 - consumer: fix panic with some invalid lookupd http addresses (thanks @martin-sucha)
* #317 - producer: connect() code-style improvement (thanks @martin-sucha)
* #330 - fix random backoff jitter on 32-bit architectures
* #333 - consumer: re-use http client with keepalives for lookupd requests (thanks @JieTrancender)
* #336 - producer: shutdown logging prefix consistent with other logging (thanks @karalabe)
* #294 - docs: fix producer example (thanks @nikitabuyevich)
* #307 - docs: add exit signal handling to consumer example
* #324 - docs: fix Consumer.SetLogger() description (thanks @gabriel-vasile)
* #297 - add AUTHORS file
* #329/#330 - switch to GitHub Actions for CI

### 1.0.8 - 2019-12-24

Thanks to @judwhite, @vitaliytv, and @HaraldNordgren for contributing to testing and dependency management improvements

* #248 - support go modules
* #249 - consumer: update RDY when setting MaxInFlight to 0
* #267 - check response message size is positive (thanks @andyxning)
* #271 - godoc for publisher and consumer (thanks @skateinmars)
* #270 - set log level (thanks @YongHaoWu)
* #255 - go vet tls.Config copying (thanks @iaburton)

### 1.0.7 - 2017-08-04

**Upgrading from 1.0.6**: There are no backward incompatible changes.
Expand Down
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package nsq

// VERSION
const VERSION = "1.0.8"
const VERSION = "1.1.0"