Merge pull request #436 from octokit/release

v0.3.0 release
This commit is contained in:
Brendan Forster
2014-03-19 15:56:05 +13:00
2 changed files with 7 additions and 3 deletions
+4
View File
@@ -1,3 +1,7 @@
### New in 0.3.0 (Released 2014/03/19)
* Add Portable Class Library support for Octokit package - #401 via @trsneed
* Filter repository issues by users - #427 via @shiftkey
### New in 0.2.2 (Released 2014/03/06)
* Task-based and Observable-based APIs are now consistent - #361 #376 #378 via @shiftkey and @ammeep
* "_links" JSON field serialization convention fix - #387 via @haacked
+3 -3
View File
@@ -3,11 +3,11 @@ using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyProductAttribute("Octokit")]
[assembly: AssemblyVersionAttribute("0.2.2")]
[assembly: AssemblyFileVersionAttribute("0.2.2")]
[assembly: AssemblyVersionAttribute("0.3.0")]
[assembly: AssemblyFileVersionAttribute("0.3.0")]
[assembly: ComVisibleAttribute(false)]
namespace System {
internal static class AssemblyVersionInformation {
internal const string Version = "0.2.2";
internal const string Version = "0.3.0";
}
}