Skip to content

Commit aa8dcfc

Browse files
authored
Support Go 1.17, remove Go 1.14 (#29)
1 parent f93a4dd commit aa8dcfc

File tree

6 files changed

+6
-9
lines changed

6 files changed

+6
-9
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 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.16
12+
go-version: 1.17
1313
- name: Check out code into the Go module directory
1414
uses: actions/checkout@v1
1515
- name: GolangCI-Lint
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
strategy:
2828
matrix:
29-
goVer: [1.14, 1.15, 1.16]
29+
goVer: [1.15, 1.16, 1.17]
3030
steps:
3131
- name: Set up Go ${{ matrix.goVer }}
3232
uses: actions/setup-go@v1

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Johannes Eiglsperger
3+
Copyright (c) 2021 Johannes Eiglsperger
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ See [examples](https://github.com/joeig/go-powerdns/tree/master/examples).
7575
- PowerDNS 4.x ("API v1")
7676
- `--webserver=yes --api=yes --api-key=apipw --api-readonly=no`
7777
- 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 to 4.4.
78-
- Tested with Go version 1.14/1.15/1.16, according to [Go's version support policy](https://golang.org/doc/devel/release.html#policy) (should work with other minor releases as well)
78+
- Tested with Go version 1.15/1.16/1.17, according to [Go's version support policy](https://golang.org/doc/devel/release.html#policy) (should work with other minor releases as well)
7979

8080
### Install from source
8181

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.16
3+
go 1.17
44

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

vendor/github.com/jarcoal/httpmock/go.mod

Lines changed: 0 additions & 3 deletions
This file was deleted.

vendor/modules.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# github.com/jarcoal/httpmock v1.0.4
2-
## explicit
2+
## explicit; go 1.7
33
github.com/jarcoal/httpmock

0 commit comments

Comments
 (0)