diff --git a/CHANGELOG.md b/CHANGELOG.md index 159d5ee6..2db67e58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,5 @@ * [PSGSuite - ChangeLog](#PSGSuite---ChangeLog) + * [2.30.1](#2301) * [2.30.0](#2300) * [2.29.0](#2290) * [2.28.2](#2282) @@ -92,6 +93,11 @@ # PSGSuite - ChangeLog +## 2.30.1 + +* Miscellaneous + * Fixed: `Remove-GSDrivePermission` duplicate parameter alias prevented usage after module update. + ## 2.30.0 * [Issue #193](https://github.com/scrthq/PSGSuite/issues/193) diff --git a/PSGSuite/PSGSuite.psd1 b/PSGSuite/PSGSuite.psd1 index e520fce4..ba1107d4 100644 --- a/PSGSuite/PSGSuite.psd1 +++ b/PSGSuite/PSGSuite.psd1 @@ -12,7 +12,7 @@ RootModule = 'PSGSuite.psm1' # Version number of this module. - ModuleVersion = '2.30.0' + ModuleVersion = '2.30.1' # ID used to uniquely identify this module GUID = '9d751152-e83e-40bb-a6db-4c329092aaec' diff --git a/PSGSuite/Public/Drive/Remove-GSDrivePermission.ps1 b/PSGSuite/Public/Drive/Remove-GSDrivePermission.ps1 index 8e88a8d7..620293b4 100644 --- a/PSGSuite/Public/Drive/Remove-GSDrivePermission.ps1 +++ b/PSGSuite/Public/Drive/Remove-GSDrivePermission.ps1 @@ -31,7 +31,6 @@ function Remove-GSDrivePermission { Param ( [parameter(Mandatory = $true,Position = 0,ValueFromPipelineByPropertyName = $true)] - [Alias('Id')] [String] $FileId, [parameter(Mandatory = $false,Position = 1,ValueFromPipelineByPropertyName = $true)] diff --git a/README.md b/README.md index 0b2cd02a..8cd718d2 100644 --- a/README.md +++ b/README.md @@ -158,6 +158,11 @@ All other functions are either intact or have an alias included to support backw [Full CHANGELOG here](https://github.com/scrthq/PSGSuite/blob/master/CHANGELOG.md) +#### 2.30.1 + +* Miscellaneous + * Fixed: `Remove-GSDrivePermission` duplicate parameter alias prevented usage after module update. + #### 2.30.0 * [Issue #193](https://github.com/scrthq/PSGSuite/issues/193)