From c90579b731c21238247345a179a507351d86b080 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Mon, 9 Jul 2018 15:56:50 +0200 Subject: [PATCH] Bump --- ChangeLog | 12 ++++++++++++ dnscrypt-proxy/main.go | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 35a0ee42..027034df 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,16 @@ +* Version 2.0.16 + - On Unix-like systems, the server can run as an unprivileged user, +and the main process will automatically restart if an error occurs. + - pledge() on OpenBSD. + - New "offline" mode to serve queries locally without contacting any +upstream servers. This can be especially useful along with the +cloaking module for local development. + - New logo. + - TTL of OPT records is properly ignored by the caching module. + - The proxy doesn't quit any more if new TCP connections cannot be +created. + * 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 diff --git a/dnscrypt-proxy/main.go b/dnscrypt-proxy/main.go index 38f00ca0..fccef7dc 100644 --- a/dnscrypt-proxy/main.go +++ b/dnscrypt-proxy/main.go @@ -12,7 +12,7 @@ import ( ) const ( - AppVersion = "2.0.15" + AppVersion = "2.0.16" DefaultConfigFileName = "dnscrypt-proxy.toml" )