From 7d71b7f62db368013e8640c6dc5ef2b94eb798fc Mon Sep 17 00:00:00 2001 From: Haacked Date: Wed, 16 Apr 2014 16:30:17 -0700 Subject: [PATCH] Add release notes for 0.3.2 --- ReleaseNotes.md | 7 +++++++ SolutionInfo.cs | 6 +++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/ReleaseNotes.md b/ReleaseNotes.md index b5d6e3f0..cc7c5fa2 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 defaed13..b2567d81 100644 --- a/SolutionInfo.cs +++ b/SolutionInfo.cs @@ -3,11 +3,11 @@ using System.Reflection; 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"; } }