Skip to content

Commit

Permalink
!deploy v2.30.1 to fix Remove-GSDrivePermission duplicate parameter a…
Browse files Browse the repository at this point in the history
…lias issue

## 2.30.1

* Miscellaneous
  * Fixed: Remove-GSDrivePermission duplicate parameter alias prevented usage after module update.
  • Loading branch information
scrthq committed Jul 17, 2019
1 parent beb2030 commit cc94c3c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
* [PSGSuite - ChangeLog](#PSGSuite---ChangeLog)
* [2.30.1](#2301)
* [2.30.0](#2300)
* [2.29.0](#2290)
* [2.28.2](#2282)
Expand Down Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion PSGSuite/PSGSuite.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
1 change: 0 additions & 1 deletion PSGSuite/Public/Drive/Remove-GSDrivePermission.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit cc94c3c

Please sign in to comment.