Prepare release v4.17.2

This commit is contained in:
Fernandez Ludovic 2024-05-28 14:56:10 +02:00
parent 71b48f8217
commit 65e8940311
2 changed files with 13 additions and 4 deletions

View file

@ -1,6 +1,6 @@
# Changelog # Changelog
## [v4.17.1] - 2024-05-28 ## [v4.17.2] - 2024-05-28
### Added ### Added
@ -28,9 +28,18 @@
- **[dnsprovider]** pdns: reconstruct zone URLs to enable non-root folder API endpoints - **[dnsprovider]** pdns: reconstruct zone URLs to enable non-root folder API endpoints
- **[dnsprovider]** alidns: fix link to API documentation - **[dnsprovider]** alidns: fix link to API documentation
## [v4.17.1] - 2024-05-28
Canceled due to a release failure related to oci-go-sdk.
The module `github.com/oracle/oci-go-sdk/v65` uses `github.com/gofrs/flock` but flock doesn't support some platform (like Solaris):
- https://github.com/gofrs/flock/issues/60
Due to that we will remove the Solaris build.
## [v4.17.0] - 2024-05-28 ## [v4.17.0] - 2024-05-28
Canceled due to a release failure. Canceled due to a release failure related to Snapcraft.
## [v4.16.1] - 2024-03-10 ## [v4.16.1] - 2024-03-10

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.17.1" ourUserAgent = "xenolf-acme/4.17.2"
// 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"
) )