diff --git a/Octokit.Tests.Integration/Clients/RepositoryContentsClientTests.cs b/Octokit.Tests.Integration/Clients/RepositoryContentsClientTests.cs index d2d0bf9d..cdec1918 100644 --- a/Octokit.Tests.Integration/Clients/RepositoryContentsClientTests.cs +++ b/Octokit.Tests.Integration/Clients/RepositoryContentsClientTests.cs @@ -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); } diff --git a/ReleaseNotes.md b/ReleaseNotes.md index bcdc277e..6521128f 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -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 diff --git a/SolutionInfo.cs b/SolutionInfo.cs index 917c487f..ecc2f0ce 100644 --- a/SolutionInfo.cs +++ b/SolutionInfo.cs @@ -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"; } } diff --git a/build.cmd b/build.cmd index 3b32814f..5358f51d 100644 --- a/build.cmd +++ b/build.cmd @@ -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