Skip to content

Commit

Permalink
!deploy v2.32.1 for #232
Browse files Browse the repository at this point in the history
## 2.32.1 - 2019-09-14

* [Issue #232](#232)
  * Added: `Visibility` parameter on `New-GSCalendarEvent`
  • Loading branch information
scrthq committed Sep 14, 2019
1 parent f0d6c59 commit 8ca9217
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 7 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
* [PSGSuite - ChangeLog](#psgsuite---changelog)
* [2.32.1 - 2019-09-14](#2321---2019-09-14)
* [2.32.0 - 2019-09-12](#2320---2019-09-12)
* [2.31.1 - 2019-08-30](#2311---2019-08-30)
* [2.31.0](#2310)
Expand Down Expand Up @@ -97,6 +98,11 @@

# PSGSuite - ChangeLog

## 2.32.1 - 2019-09-14

* [Issue #232](https://github.com/scrthq/PSGSuite/issues/232)
* Added: `Visibility` parameter on `New-GSCalendarEvent`

## 2.32.0 - 2019-09-12

* [Issue #229](https://github.com/scrthq/PSGSuite/issues/229)
Expand All @@ -114,7 +120,7 @@
* Updated: `DisableReminder` switch parameter name on `New-GSCalendarEvent` and `Update-GSCalendarEvent` functions to `DisableDefaultReminder` to better align with what that actually effects (default reminder inheritance only, not reminder overrides). The previous parameter name has been set as an alias to maintain backwards compatibility.
* Added: `RemoveAllReminders` parameter to `Update-GSCalendarEvent` to remove all custom reminders and disable calendar inheritance.
* [Issue #232](https://github.com/scrthq/PSGSuite/issues/232)
* Added: `Visibility` parameter on `New-GSCalendarEvent` and `Update-GSCalendarEvent` to set the visibility of a calendar event.
* Added: `Visibility` parameter on `Update-GSCalendarEvent` to set the visibility of a calendar event.
* Miscellaneous
* Forced `Type` parameter values to lower on the `Add-GSUser*` helper functions to ensure case senstive field matches whats expected.
* Updated Google .NET SDKs to latest versions.
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.32.0'
ModuleVersion = '2.32.1'

# ID used to uniquely identify this module
GUID = '9d751152-e83e-40bb-a6db-4c329092aaec'
Expand Down
7 changes: 6 additions & 1 deletion 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.32.1 - 2019-09-14

* [Issue #232](https://github.com/scrthq/PSGSuite/issues/232)
* Added: `Visibility` parameter on `New-GSCalendarEvent`

#### 2.32.0 - 2019-09-12

* [Issue #229](https://github.com/scrthq/PSGSuite/issues/229)
Expand All @@ -175,7 +180,7 @@ All other functions are either intact or have an alias included to support backw
* Updated: `DisableReminder` switch parameter name on `New-GSCalendarEvent` and `Update-GSCalendarEvent` functions to `DisableDefaultReminder` to better align with what that actually effects (default reminder inheritance only, not reminder overrides). The previous parameter name has been set as an alias to maintain backwards compatibility.
* Added: `RemoveAllReminders` parameter to `Update-GSCalendarEvent` to remove all custom reminders and disable calendar inheritance.
* [Issue #232](https://github.com/scrthq/PSGSuite/issues/232)
* Added: `Visibility` parameter on `New-GSCalendarEvent` and `Update-GSCalendarEvent` to set the visibility of a calendar event.
* Added: `Visibility` parameter on `Update-GSCalendarEvent` to set the visibility of a calendar event.
* Miscellaneous
* Forced `Type` parameter values to lower on the `Add-GSUser*` helper functions to ensure case senstive field matches whats expected.
* Updated Google .NET SDKs to latest versions.
Expand Down
4 changes: 2 additions & 2 deletions build.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[cmdletbinding()]
param(
[parameter( Position = 0)]
[ValidateSet('Init','Clean','Compile','Import','Test','Full','Deploy','Skip','MkDocs')]
[ValidateSet('Init','Clean','Compile','Import','Test','Full','Deploy','Skip','Docs')]
[string[]]
$Task = @('Init','Clean','Compile','Import'),
[parameter()]
Expand Down Expand Up @@ -38,7 +38,7 @@ else {
$env:BuildProjectName = 'PSGSuite'
$env:BuildScriptPath = $PSScriptRoot

if ($Task -contains 'MkDocs') {
if ($Task -contains 'Docs') {
$env:NoNugetRestore = $true
}
else {
Expand Down
11 changes: 9 additions & 2 deletions psake.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -249,10 +249,10 @@ catch {
Get-ChildItem $outputModVerDir | Format-Table -Autosize
} -description 'Compiles module from source'

Task MkDocs -Depends Init {
Task Docs -Depends Init {
'platyPS','PSGSuite' | ForEach-Object {
" Installing $_ if missing"
$_ | Resolve-Module
$_ | Resolve-Module -Verbose
Import-Module $_
}
$docPath = Join-Path $PSScriptRoot 'docs'
Expand Down Expand Up @@ -304,6 +304,13 @@ Task MkDocs -Depends Init {
}
}
}
Set-Location $PSScriptRoot
if ($null -eq (python -m mkdocs --version)) {
python -m pip install --user mkdocs
python -m pip install --user mkdocs-material
python -m pip install --user mkdocs-minify-plugin
}
python -m mkdocs gh-deploy --message "[skip ci] Deploying Docs update @ $(Get-Date) to https://psgsuite.io" --verbose --force --ignore-version
}

Task Import -Depends Compile {
Expand Down

0 comments on commit 8ca9217

Please sign in to comment.