diff options
| author | Shulhan <m.shulhan@gmail.com> | 2019-09-09 23:44:46 +0700 |
|---|---|---|
| committer | Shulhan <m.shulhan@gmail.com> | 2019-09-10 01:54:45 +0700 |
| commit | 02c2120bdaba78d865d06b229eed991e7b4e360c (patch) | |
| tree | f056bf422d473c478f6e2b9112cfc5a827fe21f4 | |
| parent | e9d4cd48f48c82b5baa568c64735a5c969c2182b (diff) | |
| download | rescached-02c2120bdaba78d865d06b229eed991e7b4e360c.tar.xz | |
go.mod: preparing release for v3
| -rw-r--r-- | CHANGELOG.adoc | 4 | ||||
| -rw-r--r-- | cmd/rescached/config.go | 2 | ||||
| -rw-r--r-- | cmd/rescached/main.go | 2 | ||||
| -rw-r--r-- | go.mod | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index b7d724f..0ca1165 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -1,4 +1,4 @@ -= Rescached v3.0.0 (2019-05-xx) += Rescached v3.0.0 (2019-09-xx) All the server core functionalities (caches and forwarding) now implemented inside "dns.Server". The main function of this package are @@ -9,7 +9,7 @@ There are also some major changes on configuration file, * "server.parent" option now use URI format instead of IP:PORT. This will allow parent name servers to be UDP, TCP, and/or DoH - simultaneusly. + simultaneously. * "server.doh.parent" and "server.parent.connection" are removed, redundant with new "server.parent" format. diff --git a/cmd/rescached/config.go b/cmd/rescached/config.go index 18c1c52..c8bae2c 100644 --- a/cmd/rescached/config.go +++ b/cmd/rescached/config.go @@ -16,7 +16,7 @@ import ( "github.com/shuLhan/share/lib/ini" libnet "github.com/shuLhan/share/lib/net" - rescached "github.com/shuLhan/rescached-go" + rescached "github.com/shuLhan/rescached-go/v3" ) // List of config sections. diff --git a/cmd/rescached/main.go b/cmd/rescached/main.go index 8bba242..75d136c 100644 --- a/cmd/rescached/main.go +++ b/cmd/rescached/main.go @@ -15,7 +15,7 @@ import ( "github.com/shuLhan/share/lib/debug" - rescached "github.com/shuLhan/rescached-go" + rescached "github.com/shuLhan/rescached-go/v3" ) func createRescachedServer(fileConfig string) *rescached.Server { @@ -1,4 +1,4 @@ -module github.com/shuLhan/rescached-go +module github.com/shuLhan/rescached-go/v3 go 1.11 |
