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

Prepare release v4.25.2

This commit is contained in:
Fernandez Ludovic
2025-08-06 14:42:49 +02:00
committed by Ludovic Fernandez
parent fc21d23f7f
commit 8737b36c85
4 changed files with 16 additions and 5 deletions

View File

@@ -1,5 +1,16 @@
# Changelog
## [v4.25.2](https://github.com/go-acme/lego/releases/tag/v4.25.2) (2025-08-06)
### Changed
-
- **[cli,log]** log when dynamic renew date not yet reached
### Fixed
- **[cli]** fix: remove wrong env var
- **[lib,cli]** fix: enforce HTTPS to the ACME server
## [v4.25.1](https://github.com/go-acme/lego/releases/tag/v4.25.1) (2025-07-21)
### Fixed

View File

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