diff --git a/Changelog.md b/Changelog.md index 4307afe..0ab4950 100644 --- a/Changelog.md +++ b/Changelog.md @@ -4,6 +4,10 @@ This Changelog records major changes between versions. Not all changes are recorded. Please check git log for details. +## Version 2.0.1 + +- Fix a crash with the random load balancing algorithm. + ## Version 2.0.0 **This is a breaking change!** Please update the configuration file after upgrading. diff --git a/doh-client/version.go b/doh-client/version.go index 22ac83e..6929034 100644 --- a/doh-client/version.go +++ b/doh-client/version.go @@ -24,6 +24,6 @@ package main const ( - VERSION = "2.0.0" + VERSION = "2.0.1" USER_AGENT = "DNS-over-HTTPS/" + VERSION + " (+https://github.com/m13253/dns-over-https)" ) diff --git a/doh-server/version.go b/doh-server/version.go index 22ac83e..6929034 100644 --- a/doh-server/version.go +++ b/doh-server/version.go @@ -24,6 +24,6 @@ package main const ( - VERSION = "2.0.0" + VERSION = "2.0.1" USER_AGENT = "DNS-over-HTTPS/" + VERSION + " (+https://github.com/m13253/dns-over-https)" )