Skip to content

Commit

Permalink
Update release notes, 'require' Go 1.13
Browse files Browse the repository at this point in the history
(Go 1.13 is just for the ./build script and to simplify testing,
1.12 and older likely work fine)
  • Loading branch information
abh committed Dec 28, 2019
1 parent 6da2933 commit 67ebd71
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
language: go
go:
- "1.10.8"
- "1.11.8"
- "1.12.3"
- "1.13.4"
- tip

before_install:
Expand Down
9 changes: 7 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# GeoDNS Changelog

## 3.0.0 February 2018
## Master

(dev branch; still in testing)
* Better test errors when geoip2 files aren't found
* Require Go 1.13 or later (just for build script for now)
* Update dependencies

## 3.0.1 April 2019

* Added Prometheus metrics support
* Removed /monitor websocket interface
Expand All @@ -16,6 +20,7 @@
* More/updated tests
* Don't let the server ID be 127.0.0.1
* Use 'dep' to manage dependencies
* Remove built-in InfluxDB support from the log processing tool

## 2.7.0 February 13, 2017

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ forum.
## Installation

If you already have go installed, just run `go get` to install the Go
dependencies. GeoDNS requires Go 1.9 or later.
dependencies. GeoDNS requires Go 1.13 or later.

If you don't have Go installed the easiest way to build geodns from source is to
download Go from https://golang.org/dl/ and untar'ing it in
Expand Down
1 change: 1 addition & 0 deletions build
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ ARCH=${GOARCH:-`go env GOARCH`}
set -ex

go build -o dist/geodns-$OS-$ARCH \
-trimpath \
-ldflags "-X main.gitVersion=$REVISION -X main.buildTime=$BUILDTIME" \
-v && \
(cd geodns-logs && go build -v -o ../dist/geodns-logs-$OS-$ARCH && cd ..) && \
Expand Down

0 comments on commit 67ebd71

Please sign in to comment.