From 99c1c144ed7a2ae673dfb679e8a5f8b6b7c06dfd Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sun, 12 Oct 2014 11:08:05 -0300 Subject: [PATCH] drafted new release notes --- ReleaseNotes.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/ReleaseNotes.md b/ReleaseNotes.md index 3238c4e5..ccee9660 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,3 +1,18 @@ +### New in 0.5.2 (Released 2014/10/13) +* New: Implement ability to add repository to team - #546 via @kevfromireland +* Fixed: PATCH parameters for releases, issues and pull requests should be nullable - #561 via @thedillonb + +**Breaking Changes:** + + - `PullRequestUpdate` removed unused fields: `Number`, `State`, `Base`, and `Head` + - `ReleaseClient.Create` now accepts a `NewRelease` parameter (was `ReleaseUpdate`) + - `ReleaseUpdate` no longer requires a `TagName` in the constructor (see `NewRelease`) + - `ReleaseUpdate` now has nullable `Draft` and `Prerelease` properties - only + set these if you want to apply changes to the API + - `IssueUpdate.State` is now a nullable `ItemState` + - `MilestoneUpdate.Number` is now removed + - `MilestoneUpdate.State` is now a nullable `ItemState` + ### New in 0.5.1 (Released 2014/10/08) * New: added XML docs to NuGet package for Maximum Intellisense - #586 via @shiftkey