diff --git a/Octokit.Tests.Integration/Clients/IssuesClientTests.cs b/Octokit.Tests.Integration/Clients/IssuesClientTests.cs index 1fa4dcd7..4ad143d4 100644 --- a/Octokit.Tests.Integration/Clients/IssuesClientTests.cs +++ b/Octokit.Tests.Integration/Clients/IssuesClientTests.cs @@ -246,10 +246,6 @@ public class IssuesClientTests : IDisposable { var owner = _repository.Owner.Login; - await AssertEx.Throws( - async () => await _issuesClient.GetForRepository(owner, _repository.Name, - new RepositoryIssueRequest { Creator = "some-random-account" })); - await AssertEx.Throws( async () => await _issuesClient.GetForRepository(owner, _repository.Name, new RepositoryIssueRequest { Assignee = "some-random-account" })); diff --git a/ReleaseNotes.md b/ReleaseNotes.md index d4e09c48..f104d3b6 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -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 diff --git a/SolutionInfo.cs b/SolutionInfo.cs index 3f229d88..15c253f2 100644 --- a/SolutionInfo.cs +++ b/SolutionInfo.cs @@ -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"; } }