Add release notes for 0.4.1

This commit is contained in:
Haacked
2014-07-22 15:23:05 -07:00
parent 032dc0d937
commit d2ba05ae7f
2 changed files with 6 additions and 3 deletions
+3
View File
@@ -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
+3 -3
View File
@@ -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";
}
}