From 67c86d860a797ce2483f50d9174d4ed24984bef2 Mon Sep 17 00:00:00 2001 From: Unknown Date: Tue, 26 Sep 2017 16:13:47 +0200 Subject: [PATCH] lego version 0.4.1 --- CHANGELOG.md | 11 +++++++++++ README.md | 2 +- cli.go | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7dc1c11636..d71cc23dcb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.4.1] - 2017-09-26 + +### Added: +- lib: A new DNS provider for OTC. +- lib: The `AWS_HOSTED_ZONE_ID` environment variable for the Route53 DNS provider to directly specify the zone. +- lib: The `RFC2136_TIMEOUT` enviroment variable to make the timeout for the RFC2136 provider configurable. +- lib: The `GCE_SERVICE_ACCOUNT_FILE` environment variable to specify a service account file for the Google Cloud DNS provider. + +### Fixed: +- lib: Fixed an authentication issue with the latest Azure SDK. + ## [0.4.0] - 2017-07-13 ### Added: diff --git a/README.md b/README.md index 7006098b18..b9c3744328 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ USAGE: lego [global options] command [command options] [arguments...] VERSION: - 0.4.0 + 0.4.1 COMMANDS: run Register an account, then create and install a certificate diff --git a/cli.go b/cli.go index 7f29917384..3aac9e253e 100644 --- a/cli.go +++ b/cli.go @@ -32,7 +32,7 @@ func main() { app.Name = "lego" app.Usage = "Let's Encrypt client written in Go" - version := "0.4.0" + version := "0.4.1" if strings.HasPrefix(gittag, "v") { version = gittag }