mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-03 03:01:31 +00:00
Fixed edit release api #506
This commit is contained in:
@@ -53,10 +53,11 @@ namespace Octokit.Reactive
|
||||
/// </remarks>
|
||||
/// <param name="owner">The repository's owner</param>
|
||||
/// <param name="name">The repository's name</param>
|
||||
/// <param name="number">The id of the release</param>
|
||||
/// <param name="data">A description of the release to edit</param>
|
||||
/// <exception cref="ApiException">Thrown when a general API error occurs.</exception>
|
||||
/// <returns>The updated <see cref="Release"/>.</returns>
|
||||
IObservable<Release> EditRelease(string owner, string name, ReleaseUpdate data);
|
||||
IObservable<Release> EditRelease(string owner, string name, int number, ReleaseUpdate data);
|
||||
|
||||
/// <summary>
|
||||
/// Deletes an existing <see cref="Release"/> for the specified repository.
|
||||
|
||||
Reference in New Issue
Block a user