Prepare release v4.3.1

This commit is contained in:
Fernandez Ludovic 2021-03-12 00:35:48 +01:00 committed by Ludovic Fernandez
parent 42867390e5
commit e8e58ec673
2 changed files with 8 additions and 2 deletions

View file

@ -1,5 +1,11 @@
# Changelog # Changelog
## [v4.3.1] - 2021-03-12
### Fixed:
- **[dnsprovider]** exoscale: fix dependency version.
## [v4.3.0] - 2021-03-10 ## [v4.3.0] - 2021-03-10
### Added: ### Added:

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