Skip to content

Commit 5ed2819

Browse files
committed
prep for 2.9.1 release
1 parent 916db51 commit 5ed2819

File tree

3 files changed

+14
-7
lines changed

3 files changed

+14
-7
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 2.9.1 (2018-10-26)
2+
3+
* Fix (#94) for TXT record cleanup bug when some domains were already validated (Thanks @philr!)
4+
* Fix (#95) error handling in New-PACertificate and New-PAOrder that would mistakenly cause new orders to be created if there were problems checking old orders. (Thanks @philr!)
5+
* Azure fix (#96) to allow special characters in credentials. (Thanks @philr!)
6+
* Route53 fix for errors caused by public/private zones with same name (#100) (Thanks @spaceygithub!)
7+
18
## 2.9.0 (2018-10-05)
29

310
* Added new DNS plugins

Posh-ACME/Posh-ACME.psd1

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@{
22

33
RootModule = 'Posh-ACME.psm1'
4-
ModuleVersion = '2.9.0'
4+
ModuleVersion = '2.9.1'
55
GUID = '5f52d490-68dd-411c-8252-828c199a4e63'
66
Author = 'Ryan Bolger'
77
Copyright = '(c) 2018 Ryan Bolger. All rights reserved.'
@@ -104,12 +104,12 @@ PrivateData = @{
104104

105105
# ReleaseNotes of this module
106106
ReleaseNotes = @'
107-
## 2.9.0 (2018-10-05)
107+
## 2.9.1 (2018-10-26)
108108
109-
* Added new DNS plugins
110-
* BlueCat (Thanks @marshallford)
111-
* Gandi
112-
* Updated DMEasy plugin to support non-Windows
109+
* Fix (#94) for TXT record cleanup bug when some domains were already validated (Thanks @philr!)
110+
* Fix (#95) error handling in New-PACertificate and New-PAOrder that would mistakenly cause new orders to be created if there were problems checking old orders. (Thanks @philr!)
111+
* Azure fix (#96) to allow special characters in credentials. (Thanks @philr!)
112+
* Route53 fix for errors caused by public/private zones with same name (#100) (Thanks @spaceygithub!)
113113
'@
114114

115115
} # End of PSData hashtable

Posh-ACME/Posh-ACME.psm1

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ $script:WellKnownDirs = @{
4646
LE_STAGE = 'https://acme-staging-v02.api.letsencrypt.org/directory';
4747
}
4848
$script:HEADER_NONCE = 'Replay-Nonce'
49-
$script:USER_AGENT = "Posh-ACME/2.9.0 PowerShell/$($PSVersionTable.PSVersion)"
49+
$script:USER_AGENT = "Posh-ACME/2.9.1 PowerShell/$($PSVersionTable.PSVersion)"
5050
$script:COMMON_HEADERS = @{'Accept-Language'='en-us,en;q=0.5'}
5151

5252
# Invoke-WebRequest and Invoke-RestMethod on PowerShell 5.1 both use

0 commit comments

Comments
 (0)