Skip to content

Commit

Permalink
prep for 1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rmbolger committed May 2, 2018
1 parent 9291ba5 commit 756cdef
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 26 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 1.1 (2018-05-02)

* Added tab completion for -DnsPlugin parameter
* Added new DNS plugins
* Acme-Dns
* Azure
* GCloud (Google Cloud)
* Windows

## 1.0 (2018-04-27)

* Initial Release
Expand Down
34 changes: 9 additions & 25 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 = '1.0'
ModuleVersion = '1.1'
GUID = '5f52d490-68dd-411c-8252-828c199a4e63'
Author = 'Ryan Bolger'
Copyright = '(c) 2018 Ryan Bolger. All rights reserved.'
Expand Down Expand Up @@ -101,30 +101,14 @@ PrivateData = @{

# ReleaseNotes of this module
ReleaseNotes = @'
## 1.0 (2018-04-26)
* Initial Release
* Added functions
* Get-DnsPluginHelp
* Get-DnsPlugins
* Get-PAAccount
* Get-PAAuthorizations
* Get-PAOrder
* Get-PAServer
* New-PAAccount
* New-PACertificate
* New-PAOrder
* Publish-DnsChallenge
* Remove-PAAccount
* Remove-PAOrder
* Save-DnsChallenge
* Set-PAAccount
* Set-PAOrder
* Set-PAServer
* Submit-ChallengeValidation
* Submit-OrderFinalize
* Submit-Renewal
* Unpublish-DnsChallenge
## 1.1 (2018-05-02)
* Added tab completion for -DnsPlugin parameter
* Added new DNS plugins
* Acme-Dns
* Azure
* GCloud (Google Cloud)
* Windows
'@

} # 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 @@ -23,7 +23,7 @@ $script:WellKnownDirs = @{
LE_STAGE = 'https://acme-staging-v02.api.letsencrypt.org/directory';
}
$script:HEADER_NONCE = 'Replay-Nonce'
$script:USER_AGENT = "Posh-ACME/0.1 PowerShell/$($PSVersionTable.PSVersion)"
$script:USER_AGENT = "Posh-ACME/1.1 PowerShell/$($PSVersionTable.PSVersion)"
$script:COMMON_HEADERS = @{'Accept-Language'='en-us,en;q=0.5'}
$script:CONTENT_TYPE = 'application/jose+json'

Expand Down

0 comments on commit 756cdef

Please sign in to comment.