Skip to content

Commit

Permalink
prep for 4.23.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rmbolger committed May 23, 2024
1 parent ea5a172 commit 32da9d5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 4.23.1 (2024-05-23)

* Fix DNSimple plugin not properly ignoring 404 API errors on PowerShell 5.1 (#549)

## 4.23.0 (2024-05-04)

* Added support for DNSimple user tokens which should allow for certs with names that span domains in multiple accounts.
Expand Down
10 changes: 3 additions & 7 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 = '4.23.0'
ModuleVersion = '4.23.1'
GUID = '5f52d490-68dd-411c-8252-828c199a4e63'
Author = 'Ryan Bolger'
Copyright = '(c) 2018 Ryan Bolger. All rights reserved.'
Expand Down Expand Up @@ -83,13 +83,9 @@ PrivateData = @{

# ReleaseNotes of this module
ReleaseNotes = @'
## 4.23.0 (2024-05-04)
## 4.23.1 (2024-05-23)
* Added support for DNSimple user tokens which should allow for certs with names that span domains in multiple accounts.
* Added warning in GoDaddy guide about newly imposed limits on API access. (Thanks @webprofusion-chrisc)
* Fixed DNSimple plugin not removing challenge records (#548).
* Fixed cascading errors on public functions when running with little or no existing config. (#544)
* Fixed OVH plugin on PowerShell 5.1 by removing an accidentally added ternary operator. (#545) (Thanks @joshooaj)
* Fix DNSimple plugin not properly ignoring 404 API errors on PowerShell 5.1 (#549)
'@

}
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 @@ -51,7 +51,7 @@ $script:WellKnownDirs = @{
SSLCOM_ECC = 'https://acme.ssl.com/sslcom-dv-ecc'
}
$script:HEADER_NONCE = 'Replay-Nonce'
$script:USER_AGENT = "Posh-ACME/4.23.0 PowerShell/$($PSVersionTable.PSVersion)"
$script:USER_AGENT = "Posh-ACME/4.23.1 PowerShell/$($PSVersionTable.PSVersion)"
$script:COMMON_HEADERS = @{'Accept-Language'='en-us,en;q=0.5'}

# Add an appropriate platform to the user-agent if possible
Expand Down

0 comments on commit 32da9d5

Please sign in to comment.