Release 2.1.0

This commit is contained in:
Star Brilliant
2019-05-14 01:39:23 +08:00
parent 81f1cfba5d
commit 1ec9548ff1
3 changed files with 9 additions and 2 deletions

View File

@@ -4,6 +4,13 @@ This Changelog records major changes between versions.
Not all changes are recorded. Please check git log for details.
## Version 2.1.0
- Add `local_addr` configuration for doh-server (#39)
- Fix a problem when compiling on macOS 10.14.4 or newer
- Add Quad9 DoH server to the example `doh-client.conf`
- Use TCP when appropriate for the given query type/response (AXFR/IXFR)
## Version 2.0.1
- Fix a crash with the random load balancing algorithm.

View File

@@ -24,6 +24,6 @@
package main
const (
VERSION = "2.0.1"
VERSION = "2.1.0"
USER_AGENT = "DNS-over-HTTPS/" + VERSION + " (+https://github.com/m13253/dns-over-https)"
)

View File

@@ -24,6 +24,6 @@
package main
const (
VERSION = "2.0.1"
VERSION = "2.1.0"
USER_AGENT = "DNS-over-HTTPS/" + VERSION + " (+https://github.com/m13253/dns-over-https)"
)