Skip to content

Commit 729f5ab

Browse files
committed
Updating module to 0.6.0
1 parent 6c73554 commit 729f5ab

File tree

4 files changed

+33
-3
lines changed

4 files changed

+33
-3
lines changed

CHANGELOG.md

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

4+
## [0.6.0](https://github.com/PowerShell/PowerShellForGitHub/tree/0.6.0) - (2018/12/13)
5+
### Features:
6+
+ Completes all support for GitHub Issue API's:
7+
+ Added support for the [Issue Event](https://developer.github.com/v3/issues/events/) API's.
8+
+ Added support for the [Issue Milestone](https://developer.github.com/v3/issues/milestones/) API's.
9+
+ Added support for the [Issue Label](https://developer.github.com/v3/issues/labels/) API's.
10+
+ Added new `LogRequestBody` configuration option to help with development, allowing you to see the
11+
exact body of the REST request being sent before it is sent over the wire.
12+
13+
More Info:
14+
* [[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/64) | [[cl]](https://github.com/PowerShell/PowerShellForGitHub/commit/06e25243086954013b50c1fa7e3eb11bc34a9501)
15+
16+
* [[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/62) | [[cl]](https://github.com/PowerShell/PowerShellForGitHub/commit/2bd244768d0bed85943e5e8375bb3f5bebdc763b)
17+
18+
* [[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/59) | [[cl]](https://github.com/PowerShell/PowerShellForGitHub/commit/6c7355424828d5ada457bdbe2182c8fdf6845641)
19+
20+
* [[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/60) | [[cl]](https://github.com/PowerShell/PowerShellForGitHub/commit/98aec29d61bf013a153705079703ae027cc25c9f)
21+
22+
Authors:
23+
* [**@HowardWolosky**](https://github.com/HowardWolosky)
24+
* [**@joseartrivera**](https://github.com/joseartrivera)
25+
* [**@etgottli**](https://github.com/etgottli)
26+
27+
------
28+
429
## [0.5.0](https://github.com/PowerShell/PowerShellForGitHub/tree/0.5.0) - (2018/11/30)
530
### Features:
631
+ Added support for the [Issue Comment](https://developer.github.com/v3/issues/comments/) API's.

CONTRIBUTING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -445,6 +445,7 @@ Thank you to all of our contributors, no matter how big or small the contributio
445445
- **[Zachary Alexander (@zjalexander)](http://github.com/zjalexander)**
446446
- **[Andrew Dahl (@aedahl)](http://github.com/aedahl)**
447447
- **[Pepe Rivera (@joseartrivera)](https://github.com/joseartrivera)**
448+
- **[Ethan Gottlieb (@etgottli)](https://github.com/etgottli)**
448449

449450
----------
450451

PowerShellForGitHub.psd1

Lines changed: 2 additions & 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.5.0'
10+
ModuleVersion = '0.6.0'
1111
Description = 'PowerShell wrapper for GitHub API'
1212

1313
# Script module or binary module file associated with this manifest.
@@ -19,6 +19,7 @@
1919
# GitHubConfiguration.ps1) depend on some of the code in Helpers being around at load time.
2020
'Helpers.ps1',
2121
'GitHubConfiguration.ps1',
22+
2223
'GitHubAnalytics.ps1',
2324
'GitHubAssignees.ps1',
2425
'GitHubBranches.ps1',

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,17 @@ At present, this module can:
3535
* Query [collaborators](https://developer.github.com/v3/repos/collaborators/)
3636
* Query [contributors](https://developer.github.com/v3/repos/statistics/)
3737
* Query [organizations](https://developer.github.com/v3/orgs/)
38-
* Query, create, update and remove [Issues](https://developer.github.com/v3/issues/)
39-
* Query, create, update and remove [Issue Comments](https://developer.github.com/v3/issues/comments/)
38+
* Query, create, update and remove [Issues](https://developer.github.com/v3/issues/) and
39+
all of their related properties (assignees, comments, events, labels, milestones, timeline)
4040
* Query, create, update and remove [Labels](https://developer.github.com/v3/issues/labels/)
4141
* Query, check, add and remove [Assignees](https://developer.github.com/v3/issues/assignees/)
4242
* Query, create, update and remove [Repositories](https://developer.github.com/v3/repos/)
4343
* Query and update [Users](https://developer.github.com/v3/users/)
4444

4545
Development is ongoing, with the goal to add broad support for the entire API set.
46+
47+
For a comprehensive look at what work is remaining to be API Complete, refer to [Issue #70](https://github.com/PowerShell/PowerShellForGitHub/issues/70).
48+
4649
Review [examples](USAGE.md#examples) to see how the module can be used to accomplish some of these tasks.
4750

4851
----------

0 commit comments

Comments
 (0)