forked from TrueCloudLab/lego
Prepare release v4.0.0
This commit is contained in:
parent
2582acc932
commit
c65edde245
2 changed files with 19 additions and 2 deletions
17
CHANGELOG.md
17
CHANGELOG.md
|
@ -1,5 +1,22 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [v4.0.0] - 2020-09-02
|
||||||
|
|
||||||
|
### Added:
|
||||||
|
|
||||||
|
- **[cli], [lib]** Support "alternate" certificate links for selecting different signing Chains
|
||||||
|
|
||||||
|
### Changed:
|
||||||
|
|
||||||
|
- **[cli]** Replaces `ec384` by `ec256` as default key-type
|
||||||
|
- **[lib]** Changes `ObtainForCSR` method signature
|
||||||
|
|
||||||
|
### Removed:
|
||||||
|
|
||||||
|
- **[dnsprovider]** Replaces FastDNS by EdgeDNS
|
||||||
|
- **[dnsprovider]** Removes old Linode provider
|
||||||
|
- **[lib]** Removes `AddPreCheck` function
|
||||||
|
|
||||||
## [v3.9.0] - 2020-09-01
|
## [v3.9.0] - 2020-09-01
|
||||||
|
|
||||||
### 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.9.0"
|
ourUserAgent = "xenolf-acme/4.0.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