mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-06 03:55:55 +00:00
@@ -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" }));
|
||||
|
||||
@@ -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
@@ -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";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user