This commit is contained in:
Frank Denis 2018-03-18 09:21:36 -07:00
parent ebc3ddda38
commit 50053d32a5
3 changed files with 9 additions and 2 deletions

View File

@ -1,4 +1,11 @@
* Version 2.0.7
- Bug fix: optional ports were not properly parsed with IPv6
addresses -- thanks to @bleeee for the report and fix.
- Bug fix: truncate TCP queries to the prefixed length.
- Certificates are force-refreshed after a time jump (e.g. when a
system resumes from hibernation).
* Version 2.0.6
- Automatic log files rotation was finally implemented.
- A new -pidfile command-line option to write the PID file was added.

View File

@ -4,7 +4,7 @@
A flexible DNS proxy, with support for modern encrypted DNS protocols such as [DNSCrypt v2](https://github.com/DNSCrypt/dnscrypt-protocol/blob/master/DNSCRYPT-V2-PROTOCOL.txt) and [DNS-over-HTTP/2](https://tools.ietf.org/html/draft-ietf-doh-dns-over-https-03).
## [dnscrypt-proxy 2.0.6 final is available for download!](https://github.com/jedisct1/dnscrypt-proxy/releases/latest)
## [dnscrypt-proxy 2.0.7 final is available for download!](https://github.com/jedisct1/dnscrypt-proxy/releases/latest)
## [Documentation](https://dnscrypt.info/doc)

View File

@ -13,7 +13,7 @@ import (
)
const (
AppVersion = "2.0.6"
AppVersion = "2.0.7"
DefaultConfigFileName = "dnscrypt-proxy.toml"
)