diff --git a/Changelog.md b/Changelog.md
index 5e654def0c6fb24982584c8b67be2412d623bc1a..dd119db82e9bd4dbb6d3bc44fe83e6b59c50c309 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.3.0
+
+- The repository now conforms to the Go semvar standard (Fixed #115, thanks to @leiless)
+
 ## Version 2.2.5
 
 - Add client certificate authentication
diff --git a/doh-client/version.go b/doh-client/version.go
index c1a882375d182c46b4672e30063cebd0005599d8..29acdfa48732512344b88b63c12d58e8a3502f3e 100644
--- a/doh-client/version.go
+++ b/doh-client/version.go
@@ -24,6 +24,6 @@
 package main
 
 const (
-	VERSION    = "2.2.6"
+	VERSION    = "2.3.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 c1a882375d182c46b4672e30063cebd0005599d8..29acdfa48732512344b88b63c12d58e8a3502f3e 100644
--- a/doh-server/version.go
+++ b/doh-server/version.go
@@ -24,6 +24,6 @@
 package main
 
 const (
-	VERSION    = "2.2.6"
+	VERSION    = "2.3.0"
 	USER_AGENT = "DNS-over-HTTPS/" + VERSION + " (+https://github.com/m13253/dns-over-https)"
 )