mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-03 03:01:31 +00:00
@@ -136,7 +136,7 @@ namespace Octokit.Tests.Integration.Clients
|
||||
var archive = await github
|
||||
.Repository
|
||||
.Content
|
||||
.GetArchive("octokit", "octokit.net", ArchiveFormat.Zipball, "");
|
||||
.GetArchive("shiftkey", "reactivegit", ArchiveFormat.Zipball);
|
||||
|
||||
Assert.NotEmpty(archive);
|
||||
}
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
### New in 0.14.0 (released 2015/07/21)
|
||||
* New: Repository redirects are supported natively - #808 via @darrelmiller, @shiftkey
|
||||
* Fixed: Support for searching repositories without a search term - #828 via @alexandrugyori
|
||||
|
||||
### New in 0.13.0 (released 2015/06/17)
|
||||
* Fixed: Added some missing Organization Teams methods - #795 via @phantomtypist, @shiftkey
|
||||
|
||||
|
||||
+3
-3
@@ -3,11 +3,11 @@ using System.Reflection;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
[assembly: AssemblyProductAttribute("Octokit")]
|
||||
[assembly: AssemblyVersionAttribute("0.13.0")]
|
||||
[assembly: AssemblyFileVersionAttribute("0.13.0")]
|
||||
[assembly: AssemblyVersionAttribute("0.14.0")]
|
||||
[assembly: AssemblyFileVersionAttribute("0.14.0")]
|
||||
[assembly: ComVisibleAttribute(false)]
|
||||
namespace System {
|
||||
internal static class AssemblyVersionInformation {
|
||||
internal const string Version = "0.13.0";
|
||||
internal const string Version = "0.14.0";
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
"tools\nuget\nuget.exe" "install" "xunit.runner.console" "-OutputDirectory" "tools" "-ExcludeVersion" "-version" "2.0.0"
|
||||
"tools\nuget\nuget.exe" "install" "FAKE.Core" "-OutputDirectory" "tools" "-ExcludeVersion" "-version" "3.12.2"
|
||||
"tools\nuget\nuget.exe" "install" "SourceLink.Fake" "-OutputDirectory" "tools" "-ExcludeVersion" "-version" "0.6.1"
|
||||
"tools\nuget\nuget.exe" "install" "SourceLink.Fake" "-OutputDirectory" "tools" "-ExcludeVersion" "-version" "1.0.0"
|
||||
|
||||
:Build
|
||||
cls
|
||||
|
||||
Reference in New Issue
Block a user