Skip to content

Commit

Permalink
!deploy v2.25.3 to complete pipeline support for Remove-GSCalendarEvent
Browse files Browse the repository at this point in the history
## 2.25.3

* Miscellaneous
  * Added: Pipeline support for Remove-GSCalendarEvent"
  • Loading branch information
scrthq committed Mar 26, 2019
1 parent faa0d57 commit ac7bef1
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changelog

* [Changelog](#changelog)
* [2.25.3](#2253)
* [2.25.2](#2252)
* [2.25.1](#2251)
* [2.25.0](#2250)
Expand Down Expand Up @@ -80,6 +81,11 @@

***

## 2.25.3

* Miscellaneous
* Added: Pipeline support for `Remove-GSCalendarEvent`

## 2.25.2

* [Issue #167](https://github.com/scrthq/PSGSuite/issues/167)
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.25.2'
ModuleVersion = '2.25.3'

# ID used to uniquely identify this module
GUID = '9d751152-e83e-40bb-a6db-4c329092aaec'
Expand Down
4 changes: 1 addition & 3 deletions PSGSuite/Public/Calendar/Remove-GSCalendarEvent.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function Remove-GSCalendarEvent {
[String[]]
$EventID
)
Begin {
Process {
if ($User -ceq 'me') {
$User = $Script:PSGSuite.AdminEmail
}
Expand All @@ -53,8 +53,6 @@ function Remove-GSCalendarEvent {
User = $User
}
$service = New-GoogleService @serviceParams
}
Process {
foreach ($E in $EventId) {
try {
if ($PSCmdlet.ShouldProcess("Deleting Event Id '$E' from user '$User'")) {
Expand Down
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,12 +143,17 @@ Update-GSSheetValue Export-GSSheet

[Full CHANGELOG here](https://github.com/scrthq/PSGSuite/blob/master/CHANGELOG.md)

## 2.25.2
#### 2.25.3

* Miscellaneous
* Added: Pipeline support for `Remove-GSCalendarEvent`

#### 2.25.2

* [Issue #167](https://github.com/scrthq/PSGSuite/issues/167)
* Fixed: `Switch-PSGSuiteConfig -SetToDefault` failing with invalid scope errors

## 2.25.1
#### 2.25.1

* [PR #165](https://github.com/scrthq/PSGSuite/pull/165) - _Thanks, [@scv-m](https://github.com/scv-m)!_
* Updated: `Get-GSCourseParticipant` now supports pipeline input for CourseId to enable piping `Get-GSCourse` into it.
Expand Down

0 comments on commit ac7bef1

Please sign in to comment.