Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Glatzer committed Jan 19, 2024
1 parent 5a58e03 commit ffa1817
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions ACME-PS/ACME-PS.psd1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@{
RootModule = 'ACME-PS.psm1'
ModuleVersion = '1.5.8'
ModuleVersion = '1.5.9'
GUID = '2DBF7E3F-F830-403A-9300-78A11C7CD00C'

CompatiblePSEditions = @("Core", "Desktop")
Expand Down Expand Up @@ -88,7 +88,7 @@
ReleaseNotes = 'Please see the release notes from the release distribution page: https://github.com/PKISharp/ACME-PS/releases'

# Prerelase
Prerelease = 'beta'
# Prerelease = 'beta'
} # End of PSData hashtable

} # End of PrivateData hashtable
Expand Down
4 changes: 2 additions & 2 deletions dist/ACME-PS/ACME-PS.psd1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@{
RootModule = 'ACME-PS.psm1'
ModuleVersion = '1.5.8'
ModuleVersion = '1.5.9'
GUID = '2DBF7E3F-F830-403A-9300-78A11C7CD00C'

CompatiblePSEditions = @("Core", "Desktop")
Expand Down Expand Up @@ -88,7 +88,7 @@
ReleaseNotes = 'Please see the release notes from the release distribution page: https://github.com/PKISharp/ACME-PS/releases'

# Prerelase
Prerelease = 'beta'
# Prerelease = 'beta'
} # End of PSData hashtable

} # End of PrivateData hashtable
Expand Down
2 changes: 1 addition & 1 deletion dist/ACME-PS/ACME-PS.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ class Certificate {

# `X509Certificate2Collections.Export()` seems to iterate through the certificates in LIFO order
# We assume the server sends the certificates in correct order - Leaf certificate first, then the issuer, then the next issuer, etc.
for($i = $acmeCertificates.Length - 1; $i -gt 1; $i--) {
for($i = $acmeCertificates.Length - 1; $i -gt 0; $i--) {
$result.Add([Security.Cryptography.X509Certificates.X509Certificate2]::new($acmeCertificates[$i])) | Out-Null;
}

Expand Down

0 comments on commit ffa1817

Please sign in to comment.