diff --git a/ChangeLog b/ChangeLog index d49ca496..32136917 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,8 @@ +* Version 2.0.4 + - Fixes a regression with truncated packets. Thanks to @mazesy and +@the-w1nd for spotting a case triggering this! + * Version 2.0.3 - Load balancing: resolvers that respond promptly, but with bogus responses are now gradually removed from the preferred pool. diff --git a/README.md b/README.md index 1277ff16..5483d56e 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.3 final is available for download!](https://github.com/jedisct1/dnscrypt-proxy/releases/latest) +## [dnscrypt-proxy 2.0.4 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 7b44c6aa..7d61ba16 100644 --- a/dnscrypt-proxy/main.go +++ b/dnscrypt-proxy/main.go @@ -11,7 +11,7 @@ ) const ( - AppVersion = "2.0.3" + AppVersion = "2.0.4" DefaultConfigFileName = "dnscrypt-proxy.toml" )