Prepare release v4.22.2

This commit is contained in:
Fernandez Ludovic 2025-02-17 20:39:37 +01:00 committed by Ludovic Fernandez
commit dca1090bb5
4 changed files with 11 additions and 5 deletions

View file

@ -1,5 +1,11 @@
# Changelog
## [v4.22.2](https://github.com/go-acme/lego/releases/tag/v4.22.2) (2025-02-17)
### Fixed
- **[dnsprovider]** acme-dns: use new registred account
## [v4.22.1](https://github.com/go-acme/lego/releases/tag/v4.22.1) (2025-02-17)
### Fixed

View file

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

View file

@ -2,7 +2,7 @@
package main
const defaultVersion = "v4.22.1+dev-detach"
const defaultVersion = "v4.22.2+dev-release"
var version = ""

View file

@ -10,12 +10,12 @@ import (
const (
// ourUserAgent is the User-Agent of this underlying library package.
ourUserAgent = "goacme-lego/4.22.1"
ourUserAgent = "goacme-lego/4.22.2"
// ourUserAgentComment is part of the UA comment linked to the version status of this underlying library package.
// values: detach|release
// NOTE: Update this with each tagged release.
ourUserAgentComment = "detach"
ourUserAgentComment = "release"
)
// Get builds and returns the User-Agent string.