Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,26 @@
# PowerShellForGitHub PowerShell Module
## Changelog

[0.8.0](https://github.com/PowerShell/PowerShellForGitHub/tree/0.8.0) - (2019/04/12)
### Features:
+ Added support for GitHub Enterprise users by adding a new `ApiHostName` configuration value.
([more info](https://github.com/Microsoft/PowerShellForGitHub/blob/master/README.md#github-enterprise))

### Fixes:
* Renamed `ConvertFrom-Markdown` to `ConvertFrom-GitHubMarkdown` to avoid a conflict with
PSCore's new `ConvertFrom-Markdown` command.

More Info:
* [[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/101) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/d5acd0f73d97f6692914976ce9366456a59cbf70)

* [[pr]](https://github.com/PowerShell/PowerShellForGitHub/pull/100) | [[cl]](https://github.com/PowerShell/PowerHellForGitHub/commit/088f95b5a1340c7ce570e6e68a41967fd5760c46)

Authors:
* [**@Cellivar**](https://github.com/Cellivar)
* [**@HowardWolosky**](https://github.com/HowardWolosky)

------

[0.7.0](https://github.com/PowerShell/PowerShellForGitHub/tree/0.7.0) - (2019/03/15)
### Fixes:
* Modified all [int] parameters to be [int64] to avoid out of bounds issues with large ID's.
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -449,6 +449,7 @@ Thank you to all of our contributors, no matter how big or small the contributio
- **[Pepe Rivera (@joseartrivera)](https://github.com/joseartrivera)**
- **[Ethan Gottlieb (@etgottli)](https://github.com/etgottli)**
- **[François-Xavier Cat (@lazywinadmin)](https://github.com/lazywinadmin)**
- **[Cliff Chapman (@Cellivar)](https://github.com/Cellivar)**

----------

Expand Down
2 changes: 1 addition & 1 deletion PowerShellForGitHub.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
CompanyName = 'Microsoft Corporation'
Copyright = 'Copyright (C) Microsoft Corporation. All rights reserved.'

ModuleVersion = '0.7.0'
ModuleVersion = '0.8.0'
Description = 'PowerShell wrapper for GitHub API'

# Script module or binary module file associated with this manifest.
Expand Down