From ade7db16b5d3881acde5b2fbadf654759c662131 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Fri, 6 Mar 2015 11:37:32 +0930 Subject: [PATCH 1/3] added release notes --- ReleaseNotes.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ReleaseNotes.md b/ReleaseNotes.md index d1cbf64e..87683b41 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,3 +1,10 @@ +### New in 0.7.3 (released 2015/03/06) +* New: list all public repositories - #691 via @rms81 +* New: added filters to `Repository.GetAllForCurrent()` - #742 via @shiftkey +* Fixed: deserializing `EventInfoType` value with underscore now works - #727 via @janovesk +* Deprecated: `Repository.SubscriberCount` has no data - #739 via @basildk +* Deprecated: `Repository.Organization` has no data - #726 via @alfhenrik + ### New in 0.7.2 (released 2015/03/01) * Fixed: unshipped Orgs Permissions preview API changes due to excessive paging in some situations. From b17c87b62e1dac8fcb72185e9f2382b00ade8333 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Fri, 6 Mar 2015 11:41:25 +0930 Subject: [PATCH 2/3] version bump --- SolutionInfo.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SolutionInfo.cs b/SolutionInfo.cs index 3981c473..2d609fdf 100644 --- a/SolutionInfo.cs +++ b/SolutionInfo.cs @@ -3,11 +3,11 @@ using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyProductAttribute("Octokit")] -[assembly: AssemblyVersionAttribute("0.7.2")] -[assembly: AssemblyFileVersionAttribute("0.7.2")] +[assembly: AssemblyVersionAttribute("0.7.3")] +[assembly: AssemblyFileVersionAttribute("0.7.3")] [assembly: ComVisibleAttribute(false)] namespace System { internal static class AssemblyVersionInformation { - internal const string Version = "0.7.2"; + internal const string Version = "0.7.3"; } } From 3cdcba0ccbea0e6d13ae94249fbb294d71648321 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Fri, 6 Mar 2015 13:34:49 +0930 Subject: [PATCH 3/3] some better comments --- ReleaseNotes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ReleaseNotes.md b/ReleaseNotes.md index 87683b41..288bd676 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,5 +1,5 @@ ### New in 0.7.3 (released 2015/03/06) -* New: list all public repositories - #691 via @rms81 +* New: added `Repository.GetAllPublic` for searching public repositories - #691 via @rms81 * New: added filters to `Repository.GetAllForCurrent()` - #742 via @shiftkey * Fixed: deserializing `EventInfoType` value with underscore now works - #727 via @janovesk * Deprecated: `Repository.SubscriberCount` has no data - #739 via @basildk