Skip to content

Commit

Permalink
prep for 1.5.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rmbolger committed Mar 7, 2022
1 parent 798e760 commit 063a7b8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.5.0 (2022-03-07)

* Set-NPSCertificate now supports both PEAP and EAP-TLS (Thanks @amorrowbellarmine)

## 1.4.0 (2022-01-06)

* Added `Set-IISCertificateNew` which was actually added in 1.3.0 but missed in the release notes. This should functions the same as the existing `Set-IISCertificate` function but is dependent on the IISAdministration module instead of the legacy WebAdministration module and should work on PowerShell 6+. However, it requires at least version 1.1.0.0 of the IISAdministration module which is distributed from powershellgallery.com.
Expand Down
14 changes: 4 additions & 10 deletions Posh-ACME.Deploy/Posh-ACME.Deploy.psd1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@{

RootModule = 'Posh-ACME.Deploy.psm1'
ModuleVersion = '1.4.0'
ModuleVersion = '1.5.0'
GUID = '79819e0a-30db-4742-bcc4-0c956273db51'
Author = 'Ryan Bolger'
Copyright = '(c) 2018 Ryan Bolger. All rights reserved.'
Expand Down Expand Up @@ -44,15 +44,9 @@ PrivateData = @{

# ReleaseNotes of this module
ReleaseNotes = @'
## 1.4.0 (2022-01-06)
* Added `Set-IISCertificateNew` which was actually added in 1.3.0 but missed in the release notes. This should functions the same as the existing `Set-IISCertificate` function but is dependent on the IISAdministration module instead of the legacy WebAdministration module and should work on PowerShell 6+. However, it requires at least version 1.1.0.0 of the IISAdministration module which is distributed from powershellgallery.com.
* Using this function will also work around issue #8 which involves errors for sites with uncommon characters in their names.
* Added `Set-RASSTPCertificate` which can be used to set the certificate for the Remote Access SSTP service. (Thanks @markpizz)
* The `CertThumbprint` parameter is no longer mandatory in the various public functions when `PfxFile` is specified. The thumprint will be read directly from the cert in the PFX if necessary. (#13)
* Improvements and fixes for `Set-ExchangeCertificate` involving old cert removal and cert replacement on renewal. (#19) (Thanks @markpizz)
* Fixed regression in `Set-ExchangeCertificate` from (#16) (Thanks @markpizz)
* Added support in private functions for cert management in locations/stores other than LocalMachine\My.
## 1.5.0 (2022-03-07)
* Set-NPSCertificate now supports both PEAP and EAP-TLS (Thanks @amorrowbellarmine)
'@

} # End of PSData hashtable
Expand Down

0 comments on commit 063a7b8

Please sign in to comment.