This commit is contained in:
Frank Denis 2018-06-06 16:14:31 +02:00
parent 5b1fc8da2a
commit 7866e6da51
3 changed files with 11 additions and 2 deletions

View File

@ -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

View File

@ -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/)

View File

@ -12,7 +12,7 @@ import (
)
const (
AppVersion = "2.0.14"
AppVersion = "2.0.15"
DefaultConfigFileName = "dnscrypt-proxy.toml"
)