From d2ba05ae7f1bc569cff56bcaa641f4d49a2ababc Mon Sep 17 00:00:00 2001 From: Haacked Date: Tue, 22 Jul 2014 15:23:05 -0700 Subject: [PATCH] Add release notes for 0.4.1 --- ReleaseNotes.md | 3 +++ SolutionInfo.cs | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/ReleaseNotes.md b/ReleaseNotes.md index d540b4f5..ac05c4b3 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,3 +1,6 @@ +### New in 0.4.1 (Released 2014/07/22) +* New: Added a public method for turning pages of requests into a flot observable - #544 via @haacked + ### New in 0.4.0 (Released 2014/07/14) * New: added Commit.CommentCount property - #494 via @gabrielweyer * New: added initial support for User Keys - #525 via @shiftkey diff --git a/SolutionInfo.cs b/SolutionInfo.cs index 1a20b5c3..76e18380 100644 --- a/SolutionInfo.cs +++ b/SolutionInfo.cs @@ -3,11 +3,11 @@ using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyProductAttribute("Octokit")] -[assembly: AssemblyVersionAttribute("0.4.0")] -[assembly: AssemblyFileVersionAttribute("0.4.0")] +[assembly: AssemblyVersionAttribute("0.4.1")] +[assembly: AssemblyFileVersionAttribute("0.4.1")] [assembly: ComVisibleAttribute(false)] namespace System { internal static class AssemblyVersionInformation { - internal const string Version = "0.4.0"; + internal const string Version = "0.4.1"; } }