From e6ec01acdaab6ea862d3ec872cfcb3693f6f289c Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Tue, 19 May 2015 16:42:52 +0930 Subject: [PATCH] release notes --- ReleaseNotes.md | 4 ++++ SolutionInfo.cs | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ReleaseNotes.md b/ReleaseNotes.md index 9718262f0e..507a163845 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,3 +1,7 @@ +### New in 0.12.0 (released 2015/05/19) +* New: Added support for repository hooks and forks - #776 via @kristianhald, @johnduhart and @AndyCross +* Fixed: Merging a PR should permit specifying a SHA - #805 via @alfhenrik + ### New in 0.11.0 (released 2015/05/10) * New: Added overload to `IRepositoryClient.GetAllPublic` specifying a `since` parameter - #774 via @alfhenrik * New: Added `IGistsClient.GetAllCommits` and `IGistsClient.GetAllForks` implementations - #542 via @haagenson, #794 via @shiftkey diff --git a/SolutionInfo.cs b/SolutionInfo.cs index b53121bd57..c65acd080a 100644 --- a/SolutionInfo.cs +++ b/SolutionInfo.cs @@ -3,11 +3,11 @@ using System.Runtime.InteropServices; [assembly: AssemblyProductAttribute("Octokit")] -[assembly: AssemblyVersionAttribute("0.11.0")] -[assembly: AssemblyFileVersionAttribute("0.11.0")] +[assembly: AssemblyVersionAttribute("0.12.0")] +[assembly: AssemblyFileVersionAttribute("0.12.0")] [assembly: ComVisibleAttribute(false)] namespace System { internal static class AssemblyVersionInformation { - internal const string Version = "0.11.0"; + internal const string Version = "0.12.0"; } }