Skip to content

Commit 375fc15

Browse files
authored
Merge pull request joeig#15 from joeig/go114
Support Go 1.14, remove Go 1.11
2 parents d2ef633 + a7998f4 commit 375fc15

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- name: Set up Go ${{ matrix.goVer }}
1010
uses: actions/setup-go@v1
1111
with:
12-
go-version: 1.13
12+
go-version: 1.14
1313
- name: Check out code into the Go module directory
1414
uses: actions/checkout@v1
1515
- name: GolangCI-Lint
@@ -19,14 +19,14 @@ jobs:
1919
$(go env GOPATH)/bin/golangci-lint run
2020
- name: Staticcheck
2121
run: |
22-
go get -u honnef.co/go/tools/cmd/staticcheck
22+
GO111MODULE=off go get -u honnef.co/go/tools/cmd/staticcheck
2323
$(go env GOPATH)/bin/staticcheck ./...
2424
test:
2525
name: Test
2626
runs-on: ubuntu-latest
2727
strategy:
2828
matrix:
29-
goVer: [1.11, 1.12, 1.13]
29+
goVer: [1.12, 1.13, 1.14]
3030
steps:
3131
- name: Set up Go ${{ matrix.goVer }}
3232
uses: actions/setup-go@v1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ See [examples](https://github.com/joeig/go-powerdns/tree/master/examples).
7474
- PowerDNS 4.x ("API v1")
7575
- `--webserver=yes --api=yes --api-key=apipw --api-readonly=no`
7676
- Note that API v1 is actively maintained. There are major differences between 3.x, 4.0 and 4.1 and this client works only with 4.1 and 4.2.
77-
- Tested with Go version 1.11/1.12/1.13, according to [Go's version support policy](https://golang.org/doc/devel/release.html#policy) (should work with other minor releases as well)
77+
- Tested with Go version 1.12/1.13/1.14, according to [Go's version support policy](https://golang.org/doc/devel/release.html#policy) (should work with other minor releases as well)
7878

7979
### Install from source
8080

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module github.com/joeig/go-powerdns/v2
22

3-
go 1.13
3+
go 1.14
44

55
require github.com/jarcoal/httpmock v1.0.4

vendor/modules.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
# github.com/jarcoal/httpmock v1.0.4
2+
## explicit
23
github.com/jarcoal/httpmock

0 commit comments

Comments
 (0)