Browse Source

Update changes for 3.1.0

Ask Bjørn Hansen 5 years ago
parent
commit
ffaf15cb59
3 changed files with 4 additions and 3 deletions
  1. 1 0
      CHANGES.md
  2. 1 1
      Dockerfile
  3. 2 2
      Makefile

+ 1 - 0
CHANGES.md

@@ -5,6 +5,7 @@
 * NSID support
 * NSID support
 * Support for DNS Cookies
 * Support for DNS Cookies
 * dnsflagday cleanups
 * dnsflagday cleanups
+* Update dependencies
 
 
 ## 3.0.2 December 2019
 ## 3.0.2 December 2019
 
 

+ 1 - 1
Dockerfile

@@ -1,4 +1,4 @@
-FROM golang:1.13.5-alpine3.10 as build
+FROM golang:1.14-alpine3.11 as build
 
 
 RUN apk add --no-cache git tar
 RUN apk add --no-cache git tar
 
 

+ 2 - 2
Makefile

@@ -1,7 +1,7 @@
 
 
 # where to rsync builds
 # where to rsync builds
 DIST?=dist/publish
 DIST?=dist/publish
-DISTSUB=2020/01
+DISTSUB=2020/05
 
 
 test: .PHONY
 test: .PHONY
 	go test -v $(shell go list ./... | grep -v /vendor/)
 	go test -v $(shell go list ./... | grep -v /vendor/)
@@ -13,7 +13,7 @@ docker-test: .PHONY
 	# test that we don't have missing dependencies
 	# test that we don't have missing dependencies
 	docker run --rm -v `pwd`:/go/src/github.com/abh/geodns \
 	docker run --rm -v `pwd`:/go/src/github.com/abh/geodns \
 		-v /opt/local/share/GeoIP:/opt/local/share/GeoIP \
 		-v /opt/local/share/GeoIP:/opt/local/share/GeoIP \
-		golang:1.13.5-alpine3.10 \
+		golang:1.14-alpine3.11 -- \
 		go test ./...
 		go test ./...
 
 
 devel:
 devel: