From 9cbe47639a62c899e3d8d89077ed8a20ecaf3abf Mon Sep 17 00:00:00 2001 From: Ivan Kozlovic Date: Thu, 25 Feb 2021 16:10:59 -0700 Subject: [PATCH] Release 0.8.3 Signed-off-by: Ivan Kozlovic --- .travis.yml | 8 ++++---- README.md | 2 +- stan.go | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index f0f793f..ad182fc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,17 +1,17 @@ language: go go: +- 1.16.x - 1.15.x -- 1.14.x go_import_path: github.com/nats-io/stan.go install: - go get -u honnef.co/go/tools/cmd/staticcheck - go get -u github.com/client9/misspell/cmd/misspell before_script: - $(exit $(go fmt ./... | wc -l)) -- go vet ./... +- go vet -modfile go_tests.mod ./... - find . -type f -name "*.go" | grep -v "/pb/" | xargs misspell -error -locale US -- staticcheck ./... +- staticcheck -tests=false ./... script: - go test -v -race . -modfile go_tests.mod after_success: -- if [[ "$TRAVIS_GO_VERSION" =~ 1.15 ]]; then ./scripts/cov.sh TRAVIS; fi +- if [[ "$TRAVIS_GO_VERSION" =~ 1.16 ]]; then ./scripts/cov.sh TRAVIS; fi diff --git a/README.md b/README.md index fe5bd6b..790fc02 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ When using or transitioning to Go modules support: ```bash # Go client latest or explicit version go get github.com/nats-io/stan.go/@latest -go get github.com/nats-io/stan.go/@v0.7.0 +go get github.com/nats-io/stan.go/@v0.8.3 ``` ## Important things to know about reconnections. diff --git a/stan.go b/stan.go index b6ea2f9..81212b2 100644 --- a/stan.go +++ b/stan.go @@ -26,7 +26,7 @@ import ( ) // Version is the NATS Streaming Go Client version -const Version = "0.8.2" +const Version = "0.8.3" const ( // DefaultNatsURL is the default URL the client connects to