Merge pull request #468 from octokit/release

Release v0.3.3 candidate
This commit is contained in:
Phil Haack
2014-04-24 10:42:20 -07:00
2 changed files with 7 additions and 3 deletions
+4
View File
@@ -1,3 +1,7 @@
### New in 0.3.3 (Released 2014/04/22)
* Add methods to retrieve a team's members and to check if a user is a member of a team - #449 via @kzu
* Add OAuth web flow methods - #462 via @haacked
### 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
+3 -3
View File
@@ -3,11 +3,11 @@ using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyProductAttribute("Octokit")]
[assembly: AssemblyVersionAttribute("0.3.2")]
[assembly: AssemblyFileVersionAttribute("0.3.2")]
[assembly: AssemblyVersionAttribute("0.3.3")]
[assembly: AssemblyFileVersionAttribute("0.3.3")]
[assembly: ComVisibleAttribute(false)]
namespace System {
internal static class AssemblyVersionInformation {
internal const string Version = "0.3.2";
internal const string Version = "0.3.3";
}
}