Skip to content

Commit 85abbea

Browse files
committed
Bump
1 parent 8076e20 commit 85abbea

4 files changed

Lines changed: 12 additions & 6 deletions

File tree

ChangeLog

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,20 @@
1+
* Version 2.0.21
2+
- The change to run the Windows service as `NT AUTHORITY\NetworkService`
3+
has been reverted, as it was reported to break logging (Windows only).
4+
15
* Version 2.0.20
26
- Startup is now *way* faster, especially when using DoH servers.
3-
- A new action: "CLOAK" is logged when queries are being cloaked.
7+
- A new action: `CLOAK` is logged when queries are being cloaked.
48
- A cloaking rule can now map to multiple IPv4 and IPv6 addresses,
59
with load-balancing.
6-
- New option: "refused_code_in_responses" to return (or not) a
7-
REFUSED code on blacklisted queries. This is disabled by default, in
10+
- New option: `refused_code_in_responses` to return (or not) a
11+
`REFUSED` code on blacklisted queries. This is disabled by default, in
812
order to work around a bug in Android Pie.
913
- Time-based restrictions are now properly handled in the
1014
generate-domains-blacklist.py script.
11-
- Other improvements have been made to the generate-domains-blacklist.py
15+
- Other improvements have been made to the `generate-domains-blacklist.py`
1216
script.
13-
- The Windows service is now installed as "NT AUTHORITY\NetworkService".
17+
- The Windows service is now installed as `NT AUTHORITY\NetworkService`.
1418

1519
* Version 2.0.19
1620
- The value for `netprobe_timeout` was read from the command-line, but

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.20"
15+
AppVersion = "2.0.21"
1616
DefaultConfigFileName = "dnscrypt-proxy.toml"
1717
)
1818

go.mod

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ require (
2424
github.com/k-sone/critbitgo v1.2.0
2525
github.com/kardianos/service v1.0.0
2626
github.com/kr/pretty v0.1.0 // indirect
27+
github.com/kr/pty v1.1.3 // indirect
2728
github.com/miekg/dns v1.1.6
2829
golang.org/x/crypto v0.0.0-20190313024323-a1f597ede03a
2930
golang.org/x/net v0.0.0-20190313220215-9f648a60d977

go.sum

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ github.com/kardianos/service v1.0.0/go.mod h1:8CzDhVuCuugtsHyZoTvsOBuvonN/UDBvl0
4444
github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI=
4545
github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
4646
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
47+
github.com/kr/pty v1.1.3/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
4748
github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=
4849
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
4950
github.com/miekg/dns v1.1.6 h1:jVwb4GDwD65q/gtItR/lIZHjNH93QfeGxZUkzJcW9mc=

0 commit comments

Comments
 (0)