Prepare release v2.7.2

This commit is contained in:
Fernandez Ludovic 2019-07-30 20:49:41 +02:00 committed by Ludovic Fernandez
parent 905b1eb80b
commit 295dd66f2a
2 changed files with 7 additions and 2 deletions

View file

@ -1,5 +1,10 @@
# Changelog # Changelog
## [v2.7.2] - 2019-07-30
### Fixed:
- **[dnsprovider]** vultr: quote TXT record
## [v2.7.1] - 2019-07-22 ## [v2.7.1] - 2019-07-22
### Fixed: ### Fixed:

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/2.7.1" ourUserAgent = "xenolf-acme/2.7.2"
// 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"
) )