From b171c70fbaf3e82fdbdccf7ca641a607b5316b52 Mon Sep 17 00:00:00 2001 From: Colin Cogle Date: Tue, 2 Mar 2021 15:13:02 -0500 Subject: [PATCH] Version release --- CHANGELOG.md | 7 ++++++- NEWS.md | 7 +++++-- NinjaRmmApi.psd1 | 6 +++--- 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 24e9cb8..0ed77bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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: diff --git a/NEWS.md b/NEWS.md index a3c792d..2c6976f 100644 --- a/NEWS.md +++ b/NEWS.md @@ -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. diff --git a/NinjaRmmApi.psd1 b/NinjaRmmApi.psd1 index 3ff29b6..3f07f3d 100644 --- a/NinjaRmmApi.psd1 +++ b/NinjaRmmApi.psd1 @@ -18,12 +18,12 @@ with NinjaRmmApi. If not, see . @{ 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', @@ -58,7 +58,7 @@ with NinjaRmmApi. If not, see . 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 } }