From d87f3618ac164d6adfbf0edf828721133ae98c37 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Wed, 16 May 2018 11:41:55 +0200 Subject: [PATCH] Bump --- ChangeLog | 4 ++++ README.md | 2 +- dnscrypt-proxy/main.go | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 05d0a2a9..0157ab2e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,8 @@ +* Version 2.0.13 + - This version fixes a crash when using DoH for queries whose size +were a multiple of the block size. Reported by @char101, thanks! + * Version 2.0.12 - Further compatibility fixes for Alpine Linux/i386 and Android/i386 have been made. Thanks to @aead for his help! diff --git a/README.md b/README.md index f9f152cc..9416f494 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-05). -## [dnscrypt-proxy 2.0.12 final is available for download!](https://github.com/jedisct1/dnscrypt-proxy/releases/latest) +## [dnscrypt-proxy 2.0.13 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 998ab124..1bd69868 100644 --- a/dnscrypt-proxy/main.go +++ b/dnscrypt-proxy/main.go @@ -12,7 +12,7 @@ import ( ) const ( - AppVersion = "2.0.12" + AppVersion = "2.0.13" DefaultConfigFileName = "dnscrypt-proxy.toml" )