Skip to content

Commit 2ee3316

Browse files
committed
Updating module to 0.5.0
1 parent 28b314b commit 2ee3316

File tree

3 files changed

+27
-3
lines changed

3 files changed

+27
-3
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,28 @@
11
# PowerShellForGitHub PowerShell Module
22
## Changelog
33

4+
## [0.5.0](https://github.com/PowerShell/PowerShellForGitHub/tree/0.5.0) - (2018/11/30)
5+
### Features:
6+
+ Added support for the [Issue Comment](https://developer.github.com/v3/issues/comments/) API's.
7+
+ Added support for the [Issue Assignee](https://developer.github.com/v3/issues/assignees/) API's.
8+
9+
### Fixes:
10+
* Fixed bug that caused single or empty arrays returned within objects to be flattened
11+
(instead of remaining as arrays)
12+
13+
More Info:
14+
* [[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/56) | [[cl]](https://github.com/PowerShell/PowerShellForGitHub/commit/6cf344fb38485275f94b1e85c1a5f932e1b519c3)
15+
16+
* [[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/53) | [[cl]](https://github.com/PowerShell/PowerShellForGitHub/commit/28b314bd7c0a810848e1acb3df43a1d83291be7b)
17+
18+
* [[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/54) | [[cl]](https://github.com/PowerShell/PowerShellForGitHub/commit/680696a833b3cc753e961fc8c723b0be9b39ecc2)
19+
20+
Authors:
21+
* [**@HowardWolosky**](https://github.com/HowardWolosky)
22+
* [**@joseartrivera**](https://github.com/joseartrivera)
23+
24+
------
25+
426
## [0.4.0](https://github.com/PowerShell/PowerShellForGitHub/tree/0.4.0) - (2018/11/16)
527
### Features:
628
+ Added support for the [Repository Traffic API's](https://developer.github.com/v3/repos/traffic/).

PowerShellForGitHub.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
CompanyName = 'Microsoft Corporation'
88
Copyright = 'Copyright (C) Microsoft Corporation. All rights reserved.'
99

10-
ModuleVersion = '0.4.0'
10+
ModuleVersion = '0.5.0'
1111
Description = 'PowerShell wrapper for GitHub API'
1212

1313
# Script module or binary module file associated with this manifest.

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,14 @@ At present, this module can:
3535
* Query [contributors](https://developer.github.com/v3/repos/statistics/)
3636
* Query [organizations](https://developer.github.com/v3/orgs/)
3737
* Query, create, update and remove [Issues](https://developer.github.com/v3/issues/)
38+
* Query, create, update and remove [Issue Comments](https://developer.github.com/v3/issues/comments/)
3839
* Query, create, update and remove [Labels](https://developer.github.com/v3/issues/labels/)
40+
* Query, check, add and remove [Assignees](https://developer.github.com/v3/issues/assignees/)
3941
* Query, create, update and remove [Repositories](https://developer.github.com/v3/repos/)
4042
* Query and update [Users](https://developer.github.com/v3/users/)
4143

4244
Development is ongoing, with the goal to add broad support for the entire API set.
43-
Review [examples](#examples) to see how the module can be used to accomplish some of these tasks.
45+
Review [examples](USAGE.md#examples) to see how the module can be used to accomplish some of these tasks.
4446

4547
----------
4648

@@ -103,7 +105,7 @@ Example command:
103105
$issues = Get-GitHubIssue -Uri 'https://github.com/PowerShell/PowerShellForGitHub'
104106
```
105107

106-
For more example commands, please refer to [USAGE](USAGE.md).
108+
For more example commands, please refer to [USAGE](USAGE.md#examples).
107109

108110
----------
109111

0 commit comments

Comments
 (0)