From 9f3ef735f283a90d97b041a4d1d6bf8f866fe6ef Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Tue, 7 Feb 2023 10:19:42 +0100 Subject: [PATCH] Bump --- ChangeLog | 5 +++++ dnscrypt-proxy/main.go | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index c639be34..c09d6844 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +# Version 2.1.4 + - Fixes a regression from version 2.1.3: when cloaking was enabled, +blocked responses were returned for records that were not A/AAAA/PTR +even for names that were not in the cloaked list. + # Version 2.1.3 - DNS-over-HTTP/3 (QUIC) should be more reliable. In particular, version 2.1.2 required another (non-QUIC) resolver to be present for diff --git a/dnscrypt-proxy/main.go b/dnscrypt-proxy/main.go index 1c8736bc..94ab9a8b 100644 --- a/dnscrypt-proxy/main.go +++ b/dnscrypt-proxy/main.go @@ -15,7 +15,7 @@ import ( ) const ( - AppVersion = "2.1.3" + AppVersion = "2.1.4" DefaultConfigFileName = "dnscrypt-proxy.toml" )