1
0
mirror of https://github.com/go-acme/lego.git synced 2025-11-27 00:20:21 +02:00

Prepare release v4.28.1

This commit is contained in:
Fernandez Ludovic
2025-11-06 16:53:15 +01:00
committed by Ludovic Fernandez
parent 14778cc1f1
commit b704b26e6c
5 changed files with 16 additions and 5 deletions

View File

@@ -81,6 +81,8 @@ jobs:
- uses: actions/attest-build-provenance@v3
with:
subject-checksums: ./dist/lego_*_checksums.txt
github-token: ${{ secrets.GH_TOKEN_REPO }}
- uses: actions/attest-build-provenance@v3
with:
subject-checksums: ./dist/digests.txt
github-token: ${{ secrets.GH_TOKEN_REPO }}

View File

@@ -6,6 +6,15 @@ Everybody thinks that the others will donate, but in the end, nobody does.
So if you think that lego is worth it, please consider [donating](https://donate.ldez.dev).
## v4.28.1
- Release date: 2025-11-06
- Tag: [v4.28.1](https://github.com/go-acme/lego/releases/tag/v4.28.1)
### Fixed
- **[cli]** fix: skip nil response
## v4.28.0
- Release date: 2025-10-31

View File

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