forked from TrueCloudLab/lego
Prepare release v3.5.0
This commit is contained in:
parent
c90c61df8e
commit
2a1cf86439
2 changed files with 25 additions and 2 deletions
23
CHANGELOG.md
23
CHANGELOG.md
|
@ -1,5 +1,28 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [v3.5.0] - 2020-03-15
|
||||||
|
|
||||||
|
### Added:
|
||||||
|
|
||||||
|
- **[dnsprovider]** Add DNS provider for Dynu.
|
||||||
|
- **[dnsprovider]** Add DNS provider for reg.ru
|
||||||
|
- **[dnsprovider]** Add DNS provider for Zonomi and RimuHosting.
|
||||||
|
- **[cli]** Building binaries for arm 6 and 5
|
||||||
|
- **[cli]** Uses CGO_ENABLED=0
|
||||||
|
- **[cli]** Multi-arch Docker image.
|
||||||
|
- **[cli]** Adds `--name` flag to list command.
|
||||||
|
|
||||||
|
### Changed:
|
||||||
|
|
||||||
|
- **[lib]** lib: Improve cleanup log messages.
|
||||||
|
- **[lib]** Wrap errors.
|
||||||
|
|
||||||
|
### Fixed:
|
||||||
|
|
||||||
|
- **[dnsprovider]** azure: pass AZURE_CLIENT_SECRET_FILE to autorest.Authorizer
|
||||||
|
- **[dnsprovider]** gcloud: fixes issues when used with GKE Workload Identity
|
||||||
|
- **[dnsprovider]** oraclecloud: fix subdomain support
|
||||||
|
|
||||||
## [v3.4.0] - 2020-02-25
|
## [v3.4.0] - 2020-02-25
|
||||||
|
|
||||||
### Added:
|
### Added:
|
||||||
|
|
|
@ -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/3.4.0"
|
ourUserAgent = "xenolf-acme/3.5.0"
|
||||||
|
|
||||||
// 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"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue