1
0
mirror of https://github.com/go-acme/lego.git synced 2025-01-09 01:18:01 +02:00

Prepare release v4.14.1

This commit is contained in:
Fernandez Ludovic 2023-09-19 21:29:51 +02:00 committed by Ludovic Fernandez
parent 11724c7bf3
commit 6209be73de
2 changed files with 9 additions and 2 deletions

View File

@ -1,5 +1,12 @@
# Changelog # Changelog
## [v4.14.1] - 2023-09-19
### Fixed:
- **[dnsprovider]** bunny: fix zone detection
- **[dnsprovider]** bunny: use NRDCG fork
- **[dnsprovider]** ovh: update client to v1.4.2
## [v4.14.0] - 2023-08-20 ## [v4.14.0] - 2023-08-20
### 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.14.0" ourUserAgent = "xenolf-acme/4.14.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"
) )