diff --git a/ReleaseNotes.md b/ReleaseNotes.md index b5d6e3f053..cc7c5fa25b 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,3 +1,10 @@ +### New in 0.3.2 (Released 2014/04/16) +* Allow passing a parameter to the Patch method - #440 via @nigel-sampson +* Remove the redundant Team suffix from ITeamsClient - #451 via @kzu +* Remove Immutable Collections dependency to support .NET 4 builds - #453 via @paulcbetts +* Add method to retrieve raw bytes from a request - #457 via @haacked +* Fix readonly deserialization bug in NetCore45 and related projects - #455 via @nigel-sampson + ### New in 0.3.1 (Released 2014/03/31) * Add support for comparing two commits - #428 via @shiftkey * Fix regression in throwing proper 2FA exception - #437 via @Haacked diff --git a/SolutionInfo.cs b/SolutionInfo.cs index defaed13f3..b2567d811b 100644 --- a/SolutionInfo.cs +++ b/SolutionInfo.cs @@ -3,11 +3,11 @@ using System.Runtime.InteropServices; [assembly: AssemblyProductAttribute("Octokit")] -[assembly: AssemblyVersionAttribute("0.3.1")] -[assembly: AssemblyFileVersionAttribute("0.3.1")] +[assembly: AssemblyVersionAttribute("0.3.2")] +[assembly: AssemblyFileVersionAttribute("0.3.2")] [assembly: ComVisibleAttribute(false)] namespace System { internal static class AssemblyVersionInformation { - internal const string Version = "0.3.1"; + internal const string Version = "0.3.2"; } }