Merge pull request #459 from octokit/release

Add release notes for 0.3.2
This commit is contained in:
Phil Haack
2014-04-16 18:28:54 -07:00
2 changed files with 10 additions and 3 deletions

View File

@@ -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

View File

@@ -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";
}
}