Skip to content

Commit

Permalink
prep for 3.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rmbolger committed Dec 22, 2018
1 parent 467b9e5 commit 55c55dd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 15 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
18 changes: 4 additions & 14 deletions Posh-ACME/Posh-ACME.psd1
Original file line number Diff line number Diff line change
@@ -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.'
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Posh-ACME/Posh-ACME.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 55c55dd

Please sign in to comment.