diff --git a/ChangeLog b/ChangeLog index fad2038b..35a0ee42 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,13 @@ +* Version 2.0.15 + - Support for proxies (HTTP/SOCKS) was added. All it takes to route +all TCP queries to Tor is add `proxy = "socks5://127.0.0.1:9050"` to +the configuration file. + - Querylog files have a new record indicating the outcome of each +transaction. + - Pre-built binaries for Linux are statically linked on all +architectures. + * Version 2.0.14 - Supports DNS-over-HTTPS draft 08. - Netprobes don't use port 0 by default, as this causes issues with diff --git a/README.md b/README.md index 9dbf8fc1..85abbd9b 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://dnscrypt.info/protocol) and [DNS-over-HTTP](https://tools.ietf.org/html/draft-ietf-doh-dns-over-https-10). -## [dnscrypt-proxy 2.0.14 final is available for download!](https://github.com/jedisct1/dnscrypt-proxy/releases/latest) +## [dnscrypt-proxy 2.0.15 final is available for download!](https://github.com/jedisct1/dnscrypt-proxy/releases/latest) * [dnscrypt-proxy documentation](https://dnscrypt.info/doc) – This project's documentation (Wiki) * [DNSCrypt project home page](https://dnscrypt.info/) diff --git a/dnscrypt-proxy/main.go b/dnscrypt-proxy/main.go index c6248df1..fc494ee2 100644 --- a/dnscrypt-proxy/main.go +++ b/dnscrypt-proxy/main.go @@ -12,7 +12,7 @@ import ( ) const ( - AppVersion = "2.0.14" + AppVersion = "2.0.15" DefaultConfigFileName = "dnscrypt-proxy.toml" )