From 1ec9548ff1e9075fb3a93c517b472c1ef17e8ce6 Mon Sep 17 00:00:00 2001
From: Star Brilliant <coder@poorlab.com>
Date: Tue, 14 May 2019 01:39:23 +0800
Subject: [PATCH] Release 2.1.0

---
 Changelog.md          | 7 +++++++
 doh-client/version.go | 2 +-
 doh-server/version.go | 2 +-
 3 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/Changelog.md b/Changelog.md
index 0ab4950..8c715ea 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -4,6 +4,13 @@ This Changelog records major changes between versions.
 
 Not all changes are recorded. Please check git log for details.
 
+## Version 2.1.0
+
+- Add `local_addr` configuration for doh-server (#39)
+- Fix a problem when compiling on macOS 10.14.4 or newer
+- Add Quad9 DoH server to the example `doh-client.conf`
+- Use TCP when appropriate for the given query type/response (AXFR/IXFR)
+
 ## Version 2.0.1
 
 - Fix a crash with the random load balancing algorithm.
diff --git a/doh-client/version.go b/doh-client/version.go
index 6929034..dcdf3c8 100644
--- a/doh-client/version.go
+++ b/doh-client/version.go
@@ -24,6 +24,6 @@
 package main
 
 const (
-	VERSION    = "2.0.1"
+	VERSION    = "2.1.0"
 	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 6929034..dcdf3c8 100644
--- a/doh-server/version.go
+++ b/doh-server/version.go
@@ -24,6 +24,6 @@
 package main
 
 const (
-	VERSION    = "2.0.1"
+	VERSION    = "2.1.0"
 	USER_AGENT = "DNS-over-HTTPS/" + VERSION + " (+https://github.com/m13253/dns-over-https)"
 )
-- 
GitLab