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

Prepare release v4.20.3

This commit is contained in:
Fernandez Ludovic 2024-11-21 14:30:48 +01:00 committed by Ludovic Fernandez
parent 7d83daef46
commit b38be9150b
4 changed files with 13 additions and 5 deletions

View File

@ -1,5 +1,13 @@
# Changelog
## [v4.20.3](https://github.com/go-acme/lego/releases/tag/v4.20.3) (2024-11-21)
### Fixed
- **[dnsprovider]** technitium: fix status code handling
- **[dnsprovider]** directadmin: fix timeout configuration
- **[httpprovider]** fix: HTTP server IPv6 matching
## [v4.20.2](https://github.com/go-acme/lego/releases/tag/v4.20.2) (2024-11-11)
### Added

View File

@ -4,10 +4,10 @@ package sender
const (
// ourUserAgent is the User-Agent of this underlying library package.
ourUserAgent = "xenolf-acme/4.20.2"
ourUserAgent = "xenolf-acme/4.20.3"
// 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.20.2+dev-detach"
const defaultVersion = "v4.20.3+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.20.2"
ourUserAgent = "goacme-lego/4.20.3"
// 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.