Prepare release v3.2.0

This commit is contained in:
Fernandez Ludovic 2019-11-09 20:53:40 +01:00 committed by Ludovic Fernandez
parent 5b0879b7e3
commit 11ee928ace
2 changed files with 15 additions and 2 deletions

View file

@ -1,5 +1,18 @@
# 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
### Added:

View file

@ -5,10 +5,10 @@ package sender
const (
// 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.
// values: detach|release
// NOTE: Update this with each tagged release.
ourUserAgentComment = "detach"
ourUserAgentComment = "release"
)