Skip to content
This repository has been archived by the owner on Nov 24, 2022. It is now read-only.

Commit

Permalink
Version release
Browse files Browse the repository at this point in the history
  • Loading branch information
Colin Cogle committed Mar 2, 2021
1 parent 5f033db commit b171c70
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Version 1.0.2
* Released: March 2, 2021
* NinjaRMM API versions supported: 0.1.2

Fixed an issue where the module may fail to load if the PowerShell runtime and/or the underlying host OS did not support TLS 1.3. [Thank you, thigley986!](https://github.com/rhymeswithmogul/NinjaRMM-PowerShell/issues/1)

# Version 1.0.1
* Not yet released
* NinjaRMM API versions supported: 0.1.2

Changes:
Expand Down
7 changes: 5 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changes in the Git tree
There have been no breaking changes. The module manifest was updated, mostly to add an icon.
# Version 1.0.2
Version 1.0.2 of the NinjaRmmApi module was released on March 2, 2021. This fixes a bug where the module may fail to load due to TLS 1.3 not being supported. The module will now fail gracefully, and fall back to TLS 1.2. [Thank you to thigley986 for reporting this!](https://github.com/rhymeswithmogul/NinjaRMM-PowerShell/issues/1)

# Version 1.0.1
There were no changes in this version, other than an icon being added to the module.

# Version 1.0.0
Version 1.0.0 of the NinjaRmmApi module was released on October 20, 2020. It was the initial release.
Expand Down
6 changes: 3 additions & 3 deletions NinjaRmmApi.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ with NinjaRmmApi. If not, see <https://www.gnu.org/licenses/>.

@{
RootModule = 'NinjaRmmApi.psm1'
ModuleVersion = '1.0.1'
ModuleVersion = '1.0.2'
CompatiblePSEditions = @('Desktop', 'Core')
PowerShellVersion = '5.1'
GUID = 'aaa3b5ab-8861-4ce4-b0aa-f2089dee9cf2'
Author = 'Colin Cogle'
Copyright = '(c) 2020 Colin Cogle. All rights reserved. Licensed under the AGPL version 3.'
Copyright = '(c) 2020-2021 Colin Cogle. All rights reserved. Licensed under the AGPL version 3.'
Description = 'An unofficial PowerShell module to interact with NinjaRMM.'
FunctionsToExport = @(
'Get-NinjaRmmAlerts',
Expand Down Expand Up @@ -58,7 +58,7 @@ with NinjaRmmApi. If not, see <https://www.gnu.org/licenses/>.
ProjectUri = 'https://github.com/rhymeswithmogul/NinjaRMM-PowerShell/'
IconUri = 'https://raw.githubusercontent.com/rhymeswithmogul/NinjaRMM-PowerShell/main/NinjaRmmApi.png'
ReleaseNotes = 'https://github.com/rhymeswithmogul/NinjaRMM-PowerShell/blob/main/NEWS'
Prerelease = '-git'
Prerelease = ''
RequireLicenseAcceptance = $false
}
}
Expand Down

0 comments on commit b171c70

Please sign in to comment.