diff --git a/CHANGELOG.md b/CHANGELOG.md index b4af289d..a241495d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 3.1.1 (2018-12-22) + +* Fixed typo in Route53 plugin that prevented finding the AwsPowershell module + ## 3.1.0 (2018-12-16) * The following plugins have added non-Windows OS support or extended their existing support. Check the plugin guides for details. diff --git a/Posh-ACME/Posh-ACME.psd1 b/Posh-ACME/Posh-ACME.psd1 index 6a4aed8f..90e64adf 100644 --- a/Posh-ACME/Posh-ACME.psd1 +++ b/Posh-ACME/Posh-ACME.psd1 @@ -1,7 +1,7 @@ @{ RootModule = 'Posh-ACME.psm1' -ModuleVersion = '3.1.0' +ModuleVersion = '3.1.1' GUID = '5f52d490-68dd-411c-8252-828c199a4e63' Author = 'Ryan Bolger' Copyright = '(c) 2018 Ryan Bolger. All rights reserved.' @@ -104,19 +104,9 @@ PrivateData = @{ # ReleaseNotes of this module ReleaseNotes = @' -## 3.1.0 (2018-12-16) - -* The following plugins have added non-Windows OS support or extended their existing support. Check the plugin guides for details. - * Azure - * DNSimple - * Infoblox - * Linode - * LuaDns - * NS1 - * Route53 -* Route53 plugin no longer requires AwsPowershell module when used with explicit keys. It will still use the module if it's installed. -* Added tab completion for plugin names with `Get-DnsPluginHelp` -* Fix #112 for Azure and errors with private zones and subscriptions with more than 100 zones +## 3.1.1 (2018-12-22) + +* Fixed typo in Route53 plugin that prevented finding the AwsPowershell module '@ } # End of PSData hashtable diff --git a/Posh-ACME/Posh-ACME.psm1 b/Posh-ACME/Posh-ACME.psm1 index 924975ac..55d2ee17 100644 --- a/Posh-ACME/Posh-ACME.psm1 +++ b/Posh-ACME/Posh-ACME.psm1 @@ -43,7 +43,7 @@ $script:WellKnownDirs = @{ LE_STAGE = 'https://acme-staging-v02.api.letsencrypt.org/directory'; } $script:HEADER_NONCE = 'Replay-Nonce' -$script:USER_AGENT = "Posh-ACME/3.1.0 PowerShell/$($PSVersionTable.PSVersion)" +$script:USER_AGENT = "Posh-ACME/3.1.1 PowerShell/$($PSVersionTable.PSVersion)" $script:COMMON_HEADERS = @{'Accept-Language'='en-us,en;q=0.5'} # Invoke-WebRequest and Invoke-RestMethod on PowerShell 5.1 both use