From e1a3040407f5844c64b1bb17beec46b9f98228c8 Mon Sep 17 00:00:00 2001 From: Haacked Date: Thu, 17 Sep 2015 12:43:57 -0700 Subject: [PATCH] Release of v0.16 - ironic ties - [x] Release notes and - [x] bumped version - [ ] integration tests passed --- ReleaseNotes.md | 7 +++++++ SolutionInfo.cs | 6 +++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/ReleaseNotes.md b/ReleaseNotes.md index 732ce389..223445d2 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,3 +1,10 @@ +### New in 0.16.0 (released 2015/09/17) + +* New: Implemented `GetMetadata` method of `IMiscellaneousClient` to retrieve information from the Meta endpoint -#892 via @haacked +* Improved: Add missing `ClosedAt` property to `Milestone` response - #890 via @geek0r +* Fixed: `NullReferenceException` when retrieving contributors for an empty repository - #897 via @adamralph +* Fixed: Bug that prevented release uploads and will unblock the entire F# ecosystem - #895 via @naveensrinivasan + ### New in 0.15.0 (released 2015/09/11) * New: `IRepositoryContentsClient.GetAllContents` now has an overload to support specifying a reference - #730 via @goalie7960 * New: Support for retrieving rate limit information from `IMiscellaneousClient` - #848 via @Red-Folder diff --git a/SolutionInfo.cs b/SolutionInfo.cs index 3e9a7a84..2741c932 100644 --- a/SolutionInfo.cs +++ b/SolutionInfo.cs @@ -3,11 +3,11 @@ using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyProductAttribute("Octokit")] -[assembly: AssemblyVersionAttribute("0.15.0")] -[assembly: AssemblyFileVersionAttribute("0.15.0")] +[assembly: AssemblyVersionAttribute("0.16.0")] +[assembly: AssemblyFileVersionAttribute("0.16.0")] [assembly: ComVisibleAttribute(false)] namespace System { internal static class AssemblyVersionInformation { - internal const string Version = "0.15.0"; + internal const string Version = "0.16.0"; } }