Merge pull request #611 from octokit/release-0.5.3

[WIP] Release 0.5.3
This commit is contained in:
Brendan Forster
2014-12-10 20:08:45 +10:30
3 changed files with 6 additions and 7 deletions
@@ -246,10 +246,6 @@ public class IssuesClientTests : IDisposable
{
var owner = _repository.Owner.Login;
await AssertEx.Throws<ApiValidationException>(
async () => await _issuesClient.GetForRepository(owner, _repository.Name,
new RepositoryIssueRequest { Creator = "some-random-account" }));
await AssertEx.Throws<ApiValidationException>(
async () => await _issuesClient.GetForRepository(owner, _repository.Name,
new RepositoryIssueRequest { Assignee = "some-random-account" }));
+3
View File
@@ -1,3 +1,6 @@
### New in 0.5.3 (Released 2014/12/05)
* New: Uploading release assets now supports an optional timeout value - #587 via @shiftkey
### New in 0.5.2 (Released 2014/10/13)
* New: Method to add repository to team - #546 via @kevfromireland
* Fixed: PATCH parameters for releases, issues and pull requests are now nullable - #561 via @thedillonb
+3 -3
View File
@@ -3,11 +3,11 @@ using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyProductAttribute("Octokit")]
[assembly: AssemblyVersionAttribute("0.5.2")]
[assembly: AssemblyFileVersionAttribute("0.5.2")]
[assembly: AssemblyVersionAttribute("0.5.3")]
[assembly: AssemblyFileVersionAttribute("0.5.3")]
[assembly: ComVisibleAttribute(false)]
namespace System {
internal static class AssemblyVersionInformation {
internal const string Version = "0.5.2";
internal const string Version = "0.5.3";
}
}