Create a new release.

This commit is contained in:
Matt Burke
2013-10-02 12:32:17 -04:00
committed by Haacked
parent 4cc62af306
commit 3ee008cfca
6 changed files with 77 additions and 2 deletions
+1
View File
@@ -19,6 +19,7 @@ namespace Octokit.Http
Task<IReadOnlyCollection<T>> GetAll(Uri endpoint, IDictionary<string, string> parameters);
Task<IReadOnlyCollection<TOther>> GetAll<TOther>(Uri endpoint, IDictionary<string, string> parameters);
Task<T> Create(Uri endpoint, object data);
Task<TOther> Create<TOther>(Uri endpoint, object data);
Task<T> Update(Uri endpoint, object data);
Task Delete(Uri endpoint);
}