diff --git a/ReleaseNotes.md b/ReleaseNotes.md index d1cbf64e..288bd676 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,3 +1,10 @@ +### New in 0.7.3 (released 2015/03/06) +* 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 +* 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. 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"; } }