Skip to content

Commit

Permalink
prep for 3.5.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rmbolger committed Jun 21, 2019
1 parent 51e73d7 commit f19ad2e
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 3.5.0 (2019-06-21)

* Added new DNS plugin for Simple DNS Plus (#149) (Thanks @alphaz18)
* Changed a bunch of "-ErrorAction SilentlyContinue" references to "Ignore" so we're not filling the $Error collection with junk.
* Fix for Boulder removing ID field from new account output.
* Fixed an issue in a number of plugins that could cause errors if the case of the requested record didn't match the server's zone case. (Thanks @Makr91)
* Fixed a bug with the Route53 plugin when used on PowerShell Core without the AwsPowerShell module installed.
* Fixed some typos in the OVH plugin usage guide examples (#147)

## 3.4.0 (2019-04-30)

* Added new DNS plugin for OVH (#79)
Expand Down
12 changes: 7 additions & 5 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.4.0'
ModuleVersion = '3.5.0'
GUID = '5f52d490-68dd-411c-8252-828c199a4e63'
Author = 'Ryan Bolger'
Copyright = '(c) 2018 Ryan Bolger. All rights reserved.'
Expand Down Expand Up @@ -104,10 +104,12 @@ PrivateData = @{

# ReleaseNotes of this module
ReleaseNotes = @'
* Added new DNS plugin for OVH (#79)
* Added ZoneScope support to Windows plugin (#134) (Thanks @dawe78)
* Fixed issue #139 with GCloud plugin prompting for GCKeyFile after upgrading to 3.3.0. Users affected by this issue will need to submit a new cert request to re-establish the GCloud plugin config.
* Fixed issue #140 with AcmeDns plugin losing registration data after upgrading to 3.3.0. Users affected by this issue will need to submit a new cert request to re-establish the AcmeDns plugin config and it will likely involve updating any CNAME records currently in use.
* Added new DNS plugin for Simple DNS Plus (#149) (Thanks @alphaz18)
* Changed a bunch of "-ErrorAction SilentlyContinue" references to "Ignore" so we're not filling the $Error collection with junk.
* Fix for Boulder removing ID field from new account output.
* Fixed an issue in a number of plugins that could cause errors if the case of the requested record didn't match the server's zone case. (Thanks @Makr91)
* Fixed a bug with the Route53 plugin when used on PowerShell Core without the AwsPowerShell module installed.
* Fixed some typos in the OVH plugin usage guide examples (#147)
'@

} # 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.4.0 PowerShell/$($PSVersionTable.PSVersion)"
$script:USER_AGENT = "Posh-ACME/3.5.0 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 f19ad2e

Please sign in to comment.