From 50053d32a5b47ea568a608b35baa42b0b6df6942 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Sun, 18 Mar 2018 09:21:36 -0700 Subject: [PATCH] Bump --- ChangeLog | 7 +++++++ README.md | 2 +- dnscrypt-proxy/main.go | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 5977df4a..f4041586 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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. diff --git a/README.md b/README.md index f8924555..c6dde8a1 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/dnscrypt-proxy/main.go b/dnscrypt-proxy/main.go index 252b7820..960f0486 100644 --- a/dnscrypt-proxy/main.go +++ b/dnscrypt-proxy/main.go @@ -13,7 +13,7 @@ import ( ) const ( - AppVersion = "2.0.6" + AppVersion = "2.0.7" DefaultConfigFileName = "dnscrypt-proxy.toml" )