Skip to content

Commit d7acddb

Browse files
authored
Merge pull request #279 from jehiah/release_279
Prep 1.0.8 release; drop dep support
2 parents 4b82735 + f9d9845 commit d7acddb

File tree

6 files changed

+6
-59
lines changed

6 files changed

+6
-59
lines changed

.travis.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
language: go
22
go:
3-
- 1.11.x
3+
# test with the two most recent Go versions
44
- 1.12.x
55
- 1.13.x
66
env:
7-
- NSQ_DOWNLOAD=nsq-0.3.8.linux-amd64.go1.6.2 GOARCH=amd64
8-
- NSQ_DOWNLOAD=nsq-0.3.8.linux-amd64.go1.6.2 GOARCH=386
97
- NSQ_DOWNLOAD=nsq-1.0.0-compat.linux-amd64.go1.8 GOARCH=amd64
10-
- NSQ_DOWNLOAD=nsq-1.0.0-compat.linux-amd64.go1.8 GOARCH=386
118
- NSQ_DOWNLOAD=nsq-1.1.0.linux-amd64.go1.10.3 GOARCH=amd64
12-
- NSQ_DOWNLOAD=nsq-1.1.0.linux-amd64.go1.10.3 GOARCH=386
9+
- NSQ_DOWNLOAD=nsq-1.2.0.linux-amd64.go1.12.9 GOARCH=amd64
10+
# test most recent nsq version on GOARCH=386
11+
- NSQ_DOWNLOAD=nsq-1.2.0.linux-amd64.go1.12.9 GOARCH=386
1312
script:
1413
- ./travis.sh
1514
notifications:

Gopkg.lock

-16
This file was deleted.

Gopkg.toml

-26
This file was deleted.

go.sum

-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
github.com/golang/snappy v0.0.0-20160529050041-d9eb7a3d35ec h1:ZaSUjYC8aWT/om43c8YVz0SqjT8ABtqw7REbZGsCroE=
2-
github.com/golang/snappy v0.0.0-20160529050041-d9eb7a3d35ec/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
31
github.com/golang/snappy v0.0.1 h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4=
42
github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=

travis.sh

+1-9
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,5 @@ wget http://bitly-downloads.s3.amazonaws.com/nsq/$NSQ_DOWNLOAD.tar.gz
66
tar zxvf $NSQ_DOWNLOAD.tar.gz
77
export PATH=$NSQ_DOWNLOAD/bin:$PATH
88

9-
go_minor_version=$(go version | awk '{print $3}' | awk -F. '{print $2}')
10-
if [[ $go_minor_version -gt 10 ]]; then
11-
export GO111MODULE=on
12-
else
13-
wget -O dep https://github.com/golang/dep/releases/download/v0.5.0/dep-linux-amd64
14-
chmod +x dep
15-
./dep ensure
16-
fi
17-
9+
export GO111MODULE=on
1810
./test.sh

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.7"
4+
const VERSION = "1.0.8"

0 commit comments

Comments
 (0)