From 28fcd721acf4acd90765e5c2e35d759f69c24dc4 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Thu, 4 Dec 2014 15:03:51 +1000 Subject: [PATCH 1/3] added release notes --- ReleaseNotes.md | 3 +++ 1 file changed, 3 insertions(+) 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 From 87c6958a85bbd9ceafbe903aea180b6e9b128fa7 Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Thu, 4 Dec 2014 15:05:38 +1000 Subject: [PATCH 2/3] version bump --- SolutionInfo.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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"; } } From a73272900a65955d6a615e1a0c7da31c3b7bd21c Mon Sep 17 00:00:00 2001 From: Brendan Forster Date: Wed, 10 Dec 2014 19:59:25 +1030 Subject: [PATCH 3/3] no longer throws when creator is a random account --- Octokit.Tests.Integration/Clients/IssuesClientTests.cs | 4 ---- 1 file changed, 4 deletions(-) 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" }));