From 627cf882a13631379fab60372af45a141d973dc5 Mon Sep 17 00:00:00 2001 From: Haacked Date: Wed, 23 Apr 2014 08:25:53 -0700 Subject: [PATCH] Release v0.3.3 candidate --- ReleaseNotes.md | 4 ++++ SolutionInfo.cs | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ReleaseNotes.md b/ReleaseNotes.md index cc7c5fa2..76a32caf 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -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 diff --git a/SolutionInfo.cs b/SolutionInfo.cs index b2567d81..9dbc63f3 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.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"; } }