aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShulhan <m.shulhan@gmail.com>2019-09-09 23:44:46 +0700
committerShulhan <m.shulhan@gmail.com>2019-09-10 01:54:45 +0700
commit02c2120bdaba78d865d06b229eed991e7b4e360c (patch)
treef056bf422d473c478f6e2b9112cfc5a827fe21f4
parente9d4cd48f48c82b5baa568c64735a5c969c2182b (diff)
downloadrescached-02c2120bdaba78d865d06b229eed991e7b4e360c.tar.xz
go.mod: preparing release for v3
-rw-r--r--CHANGELOG.adoc4
-rw-r--r--cmd/rescached/config.go2
-rw-r--r--cmd/rescached/main.go2
-rw-r--r--go.mod2
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 {
diff --git a/go.mod b/go.mod
index c3a00cf..d361703 100644
--- a/go.mod
+++ b/go.mod
@@ -1,4 +1,4 @@
-module github.com/shuLhan/rescached-go
+module github.com/shuLhan/rescached-go/v3
go 1.11