Skip to content

Commit 6f047e0

Browse files
committed
Bump
1 parent ce62981 commit 6f047e0

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

ChangeLog

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11

2+
* Version 2.0.12
3+
- Further compatibility fixes for Alpine Linux/i386 and Android/i386
4+
have been made. Thanks to @aead for his help!
5+
- The proxy will now wait for network connectivity before starting.
6+
This is useful if the proxy is automatically started at boot, possibly
7+
before the network is fully configured.
8+
- The IPv6 blocking module now returns synthetic SOA records to
9+
improve compatibility with downstream resolvers and stub resolvers.
10+
211
* Version 2.0.11
312
- This release fixes a long-standing bug that caused the proxy to
413
block or crash when Position-Independent Executables were produced.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
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).
66

7-
## [dnscrypt-proxy 2.0.11 final is available for download!](https://github.com/jedisct1/dnscrypt-proxy/releases/latest)
7+
## [dnscrypt-proxy 2.0.12 final is available for download!](https://github.com/jedisct1/dnscrypt-proxy/releases/latest)
88

99
* [dnscrypt-proxy documentation](https://dnscrypt.info/doc) – This project's documentation (Wiki)
1010
* [DNSCrypt project home page](https://dnscrypt.info/)

dnscrypt-proxy/example-dnscrypt-proxy.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,8 @@ fallback_resolver = '9.9.9.9:53'
163163
ignore_system_dns = false
164164

165165

166-
## Maximum time (in seconds) to wait for network connectivity when the proxy starts.
167-
## Useful if the proxy is automatically started at boot, and network connectivity is not immediately available.
166+
## Maximum time (in seconds) to wait for network connectivity before initializing the proxy.
167+
## Useful if the proxy is automatically started at boot, and network connectivity is not guaranteed to be immediately available.
168168
## Use 0 to disable.
169169

170170
netprobe_timeout = 30

dnscrypt-proxy/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
)
1313

1414
const (
15-
AppVersion = "2.0.11"
15+
AppVersion = "2.0.12"
1616
DefaultConfigFileName = "dnscrypt-proxy.toml"
1717
)
1818

0 commit comments

Comments
 (0)