Prepare release v4.10.1

This commit is contained in:
Fernandez Ludovic 2023-02-25 17:53:35 +01:00 committed by Ludovic Fernandez
parent 56fda1abd8
commit 7153b4e7c4
2 changed files with 8 additions and 2 deletions

View file

@ -1,5 +1,11 @@
# Changelog # Changelog
## [v4.10.1] - 2023-02-25
### Fixed:
- **[dnsprovider,cname]** acmedns: fix CNAME support
- **[dnsprovider]** dynu: fix subdomain support
## [v4.10.0] - 2023-02-10 ## [v4.10.0] - 2023-02-10
### Added: ### Added:

View file

@ -5,10 +5,10 @@ package sender
const ( const (
// ourUserAgent is the User-Agent of this underlying library package. // ourUserAgent is the User-Agent of this underlying library package.
ourUserAgent = "xenolf-acme/4.10.0" ourUserAgent = "xenolf-acme/4.10.1"
// ourUserAgentComment is part of the UA comment linked to the version status of this underlying library package. // ourUserAgentComment is part of the UA comment linked to the version status of this underlying library package.
// values: detach|release // values: detach|release
// NOTE: Update this with each tagged release. // NOTE: Update this with each tagged release.
ourUserAgentComment = "detach" ourUserAgentComment = "release"
) )