Skip to content

Commit

Permalink
!build v2.6.0 for #44 and #45
Browse files Browse the repository at this point in the history
  • Loading branch information
scrthq committed May 8, 2018
1 parent 0ad7c20 commit 75fbdd2
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 2 deletions.
21 changes: 20 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<!-- TOC -->

- [Changelog](#changelog)
- [2.6.0](#260)
- [2.5.4](#254)
- [2.5.3](#253)
- [2.5.2](#252)
Expand All @@ -13,7 +14,7 @@
- [2.2.1](#221)
- [2.2.0](#220)
- [2.1.5](#215)
- [2.1.3 / 2.1.4](#213--214)
- [2.1.3 / 2.1.4](#213---214)
- [2.1.2](#212)
- [2.1.1](#211)
- [2.1.0](#210)
Expand All @@ -29,6 +30,24 @@

<!-- /TOC -->

## 2.6.0

* Added: `Compare-ModuleVersion` function to get latest installed version and compare against the latest version on the PSGallery ([Issue #44](https://github.com/scrthq/PSGSuite/issues/44))
* Fixed: Pipeline support, so you can do things like the following and get group, group member and user details (as an example) easily ([Issue #45](https://github.com/scrthq/PSGSuite/issues/45)):
```powershell
#much pipe
$users = Get-GSGroup $groupEmail -Verbose -OutVariable group | Get-GSGroupMember -Verbose -OutVariable members | Get-GSUser -Verbose
#contains the group's info
$group
#contains the group members' info
$members
#contains the group members' full user info
$users
```

## 2.5.4

* Added: `CustomSchemas` parameter to `New-GSUser` (Resolve [Issue #42](https://github.com/scrthq/PSGSuite/issues/42))
Expand Down
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,20 @@ Update-GSSheetValue Export-GSSheet
#### 2.6.0

* Added: `Compare-ModuleVersion` function to get latest installed version and compare against the latest version on the PSGallery ([Issue #44](https://github.com/scrthq/PSGSuite/issues/44))
*
* Fixed: Pipeline support, so you can do things like the following and get group, group member and user details (as an example) easily ([Issue #45](https://github.com/scrthq/PSGSuite/issues/45)):
```powershell
#much pipe
$users = Get-GSGroup $groupEmail -Verbose -OutVariable group | Get-GSGroupMember -Verbose -OutVariable members | Get-GSUser -Verbose
#contains the group's info
$group
#contains the group members' info
$members
#contains the group members' full user info
$users
```

#### 2.5.4

Expand Down

0 comments on commit 75fbdd2

Please sign in to comment.