Skip to content

Commit

Permalink
prep for 3.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rmbolger committed Jan 22, 2019
1 parent 2b82c46 commit f710ae8
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 5 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 3.2.0 (2019-01-22)

* Added new DNS plugin for name.com registrar (Thanks @ravensorb)
* Added additional argument completers for Account IDs, MainDomain, and KeyLength parameters
* The Posh-ACME config location can now be set by creating a `POSHACME_HOME` environment variable. The directory must exist and be accessible prior to importing the module. If you change the value of the environment variable, you need to re-import the module with `-Force` or open a new PowerShell session for the change to take effect.
* Added better error handling for cases where the config location is not writable.
* Get-PACertificate now returns null instead of throwing an error if the cert or associated order doesn't exist
* Fixed the ability to revoke a certificate after the associated order has expired
* Fix for #117 involving broken renewal processing on PowerShell Core in non-US locales
* Fixes for additional DateTime handling on PowerShell Core

## 3.1.1 (2018-12-22)

* Fixed typo in Route53 plugin that prevented finding the AwsPowershell module
Expand Down
15 changes: 11 additions & 4 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.1'
ModuleVersion = '3.2.0'
GUID = '5f52d490-68dd-411c-8252-828c199a4e63'
Author = 'Ryan Bolger'
Copyright = '(c) 2018 Ryan Bolger. All rights reserved.'
Expand Down Expand Up @@ -104,9 +104,16 @@ PrivateData = @{

# ReleaseNotes of this module
ReleaseNotes = @'
## 3.1.1 (2018-12-22)
* Fixed typo in Route53 plugin that prevented finding the AwsPowershell module
## 3.2.0 (2019-01-22)
* Added new DNS plugin for name.com registrar (Thanks @ravensorb)
* Added additional argument completers for Account IDs, MainDomain, and KeyLength parameters
* The Posh-ACME config location can now be set by creating a `POSHACME_HOME` environment variable. The directory must exist and be accessible prior to importing the module. If you change the value of the environment variable, you need to re-import the module with `-Force` or open a new PowerShell session for the change to take effect.
* Added better error handling for cases where the config location is not writable.
* Get-PACertificate now returns null instead of throwing an error if the cert or associated order doesn't exist
* Fixed the ability to revoke a certificate after the associated order has expired
* Fix for #117 involving broken renewal processing on PowerShell Core in non-US locales
* Fixes for additional DateTime handling on PowerShell Core
'@

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

Please sign in to comment.