forked from TrueCloudLab/lego
Prepare release v3.2.0
This commit is contained in:
parent
5b0879b7e3
commit
11ee928ace
2 changed files with 15 additions and 2 deletions
13
CHANGELOG.md
13
CHANGELOG.md
|
@ -1,5 +1,18 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [v3.2.0] - 2019-11-10
|
||||||
|
|
||||||
|
### Added:
|
||||||
|
- **[dnsprovider]** Add support for autodns
|
||||||
|
|
||||||
|
### Changed:
|
||||||
|
- **[dnsprovider]** httpreq: Allow use environment vars from a `_FILE` file
|
||||||
|
- **[lib]** Don't deactivate valid authorizations
|
||||||
|
- **[lib]** Expose more SOA fields found by dns01.FindZoneByFqdn
|
||||||
|
|
||||||
|
### Fixed:
|
||||||
|
- **[dnsprovider]** use token as unique ID.
|
||||||
|
|
||||||
## [v3.1.0] - 2019-10-07
|
## [v3.1.0] - 2019-10-07
|
||||||
|
|
||||||
### 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.1.0"
|
ourUserAgent = "xenolf-acme/3.2.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