From dcbf57487ca02610e6e5e57f759c831424fd70b6 Mon Sep 17 00:00:00 2001 From: Haacked Date: Wed, 6 Nov 2013 09:23:10 -0800 Subject: [PATCH] Update release notes and version --- ReleaseNotes.md | 4 ++++ SolutionInfo.cs | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ReleaseNotes.md b/ReleaseNotes.md index 2d678274..155742b0 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,3 +1,7 @@ +### New in 0.1.4 (Released 2013/11/6) +* New client for retrieving activity events +* Fixed bug where concealing an org's member actually shows the member + ### New in 0.1.3 (Released 2013/11/5) * New Xamarin Component store versions of Octokit.net * New clients for managing assignees, milestones, and tags diff --git a/SolutionInfo.cs b/SolutionInfo.cs index 8c52dd1f..65f27551 100644 --- a/SolutionInfo.cs +++ b/SolutionInfo.cs @@ -3,11 +3,11 @@ using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyProductAttribute("Octokit")] -[assembly: AssemblyVersionAttribute("0.1.3")] -[assembly: AssemblyFileVersionAttribute("0.1.3")] +[assembly: AssemblyVersionAttribute("0.1.4")] +[assembly: AssemblyFileVersionAttribute("0.1.4")] [assembly: ComVisibleAttribute(false)] namespace System { internal static class AssemblyVersionInformation { - internal const string Version = "0.1.3"; + internal const string Version = "0.1.4"; } }