mirror of
https://github.com/m13253/dns-over-https.git
synced 2026-03-31 20:35:41 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
72165bffff | ||
|
|
82317bd63e | ||
|
|
acf3e3c328 |
@@ -4,6 +4,10 @@ This Changelog records major changes between versions.
|
||||
|
||||
Not all changes are recorded. Please check git log for details.
|
||||
|
||||
## Version 2.2.1
|
||||
|
||||
- Fix messy log
|
||||
|
||||
## Version 2.2.0
|
||||
|
||||
- Breaking change: The configuration format of doh-server is changed
|
||||
|
||||
@@ -24,6 +24,6 @@
|
||||
package main
|
||||
|
||||
const (
|
||||
VERSION = "2.2.0"
|
||||
VERSION = "2.2.1"
|
||||
USER_AGENT = "DNS-over-HTTPS/" + VERSION + " (+https://github.com/m13253/dns-over-https)"
|
||||
)
|
||||
|
||||
@@ -97,7 +97,6 @@ var rxUpstreamWithTypePrefix = regexp.MustCompile("^[a-z-]+(:)")
|
||||
|
||||
func addressAndType(us string) (string, string) {
|
||||
p := rxUpstreamWithTypePrefix.FindStringSubmatchIndex(us)
|
||||
fmt.Println(p)
|
||||
if len(p) != 4 {
|
||||
return "", ""
|
||||
}
|
||||
|
||||
@@ -24,6 +24,6 @@
|
||||
package main
|
||||
|
||||
const (
|
||||
VERSION = "2.2.0"
|
||||
VERSION = "2.2.1"
|
||||
USER_AGENT = "DNS-over-HTTPS/" + VERSION + " (+https://github.com/m13253/dns-over-https)"
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user