From 0410e0ba6829af1ed7de7a3d91163590dcd4db33 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Fri, 11 Jul 2014 17:36:10 +0930 Subject: [PATCH 1/4] Update release notes for v0.4 --- ReleaseNotes.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/ReleaseNotes.md b/ReleaseNotes.md index c66c06e023..288afb4178 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,3 +1,14 @@ +### New in 0.4.0 (Released 2014/07/14) +* New: added Commit.CommentCount property - #494 via @gabrielweyer +* New: add support for deleting emails for the authenticated user - #524 via @shiftkey +* New: added initial support for User Keys - #525 via @shiftkey +* New: support for listing commits on a repository - #529 via @haagenson +* New: support for Pull Request Comments - #531 via @gabrielweyer +* Fixed: unassign milestone from issue - #526 via @shiftkey +* Fixed: organization deserialization bug - #522 via @shiftkey +* Fixed: Repository.MasterBranch -> Repository.DefaultBranch - #523 via @shiftkey +* Improved: refinements to Releases API - #519 via @shiftkey + ### New in 0.3.5 (Released 2014/06/30) * Fix issue search filtering bug - #481 via @shiftkey * Fix methods to edit a release - #507 via @distantcam From f990445e11f41703122847036e981cce7b0729d4 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Fri, 11 Jul 2014 17:43:51 +0930 Subject: [PATCH 2/4] just rewording things a bit --- ReleaseNotes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReleaseNotes.md b/ReleaseNotes.md index 288afb4178..d540b4f538 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,6 +1,5 @@ ### New in 0.4.0 (Released 2014/07/14) * New: added Commit.CommentCount property - #494 via @gabrielweyer -* New: add support for deleting emails for the authenticated user - #524 via @shiftkey * New: added initial support for User Keys - #525 via @shiftkey * New: support for listing commits on a repository - #529 via @haagenson * New: support for Pull Request Comments - #531 via @gabrielweyer @@ -8,6 +7,7 @@ * Fixed: organization deserialization bug - #522 via @shiftkey * Fixed: Repository.MasterBranch -> Repository.DefaultBranch - #523 via @shiftkey * Improved: refinements to Releases API - #519 via @shiftkey +* Improved: can delete registered emails for the authenticated user - #524 via @shiftkey ### New in 0.3.5 (Released 2014/06/30) * Fix issue search filtering bug - #481 via @shiftkey From 545cc30476772512289dd56e64e29f62382750c4 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sat, 12 Jul 2014 08:00:25 +0930 Subject: [PATCH 3/4] version bump --- SolutionInfo.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SolutionInfo.cs b/SolutionInfo.cs index a697e16029..1a20b5c3db 100644 --- a/SolutionInfo.cs +++ b/SolutionInfo.cs @@ -3,11 +3,11 @@ using System.Runtime.InteropServices; [assembly: AssemblyProductAttribute("Octokit")] -[assembly: AssemblyVersionAttribute("0.3.5")] -[assembly: AssemblyFileVersionAttribute("0.3.5")] +[assembly: AssemblyVersionAttribute("0.4.0")] +[assembly: AssemblyFileVersionAttribute("0.4.0")] [assembly: ComVisibleAttribute(false)] namespace System { internal static class AssemblyVersionInformation { - internal const string Version = "0.3.5"; + internal const string Version = "0.4.0"; } } From f7972957d93b1871cb37e310f83f3887fd3b8137 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Sat, 12 Jul 2014 08:00:45 +0930 Subject: [PATCH 4/4] the doc plagiarizer is trying to overwrite good docs with bad ones --- Octokit.Reactive/Clients/IObservableFollowersClient.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Octokit.Reactive/Clients/IObservableFollowersClient.cs b/Octokit.Reactive/Clients/IObservableFollowersClient.cs index f959b833bd..bae85c301d 100644 --- a/Octokit.Reactive/Clients/IObservableFollowersClient.cs +++ b/Octokit.Reactive/Clients/IObservableFollowersClient.cs @@ -16,7 +16,7 @@ public interface IObservableFollowersClient /// /// See the API documentation for more information. /// - /// A of s that follow the authenticated user. + /// A of s that follow the authenticated user. [SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate")] IObservable GetAllForCurrent(); @@ -27,7 +27,7 @@ public interface IObservableFollowersClient /// /// See the API documentation for more information. /// - /// A of s that follow the passed user. + /// A of s that follow the passed user. IObservable GetAll(string login); /// @@ -36,7 +36,7 @@ public interface IObservableFollowersClient /// /// See the API documentation for more information. /// - /// A of s that the authenticated user follows. + /// A of s that the authenticated user follows. [SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate")] IObservable GetFollowingForCurrent(); @@ -47,7 +47,7 @@ public interface IObservableFollowersClient /// /// See the API documentation for more information. /// - /// A of s that the passed user follows. + /// A of s that the passed user follows. IObservable GetFollowing(string login); ///