Bump
This commit is contained in:
parent
ce62981c44
commit
6f047e07b8
|
@ -1,4 +1,13 @@
|
||||||
|
|
||||||
|
* Version 2.0.12
|
||||||
|
- Further compatibility fixes for Alpine Linux/i386 and Android/i386
|
||||||
|
have been made. Thanks to @aead for his help!
|
||||||
|
- The proxy will now wait for network connectivity before starting.
|
||||||
|
This is useful if the proxy is automatically started at boot, possibly
|
||||||
|
before the network is fully configured.
|
||||||
|
- The IPv6 blocking module now returns synthetic SOA records to
|
||||||
|
improve compatibility with downstream resolvers and stub resolvers.
|
||||||
|
|
||||||
* Version 2.0.11
|
* Version 2.0.11
|
||||||
- This release fixes a long-standing bug that caused the proxy to
|
- This release fixes a long-standing bug that caused the proxy to
|
||||||
block or crash when Position-Independent Executables were produced.
|
block or crash when Position-Independent Executables were produced.
|
||||||
|
|
|
@ -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).
|
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.11 final is available for download!](https://github.com/jedisct1/dnscrypt-proxy/releases/latest)
|
## [dnscrypt-proxy 2.0.12 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-proxy documentation](https://dnscrypt.info/doc) – This project's documentation (Wiki)
|
||||||
* [DNSCrypt project home page](https://dnscrypt.info/)
|
* [DNSCrypt project home page](https://dnscrypt.info/)
|
||||||
|
|
|
@ -163,8 +163,8 @@ fallback_resolver = '9.9.9.9:53'
|
||||||
ignore_system_dns = false
|
ignore_system_dns = false
|
||||||
|
|
||||||
|
|
||||||
## Maximum time (in seconds) to wait for network connectivity when the proxy starts.
|
## Maximum time (in seconds) to wait for network connectivity before initializing the proxy.
|
||||||
## Useful if the proxy is automatically started at boot, and network connectivity is not immediately available.
|
## Useful if the proxy is automatically started at boot, and network connectivity is not guaranteed to be immediately available.
|
||||||
## Use 0 to disable.
|
## Use 0 to disable.
|
||||||
|
|
||||||
netprobe_timeout = 30
|
netprobe_timeout = 30
|
||||||
|
|
|
@ -12,7 +12,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
AppVersion = "2.0.11"
|
AppVersion = "2.0.12"
|
||||||
DefaultConfigFileName = "dnscrypt-proxy.toml"
|
DefaultConfigFileName = "dnscrypt-proxy.toml"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue