Release of v0.16 - ironic ties

- [x] Release notes and
- [x] bumped version
- [ ] integration tests passed
This commit is contained in:
Haacked
2015-09-17 12:43:57 -07:00
parent 67c8d4067f
commit e1a3040407
2 changed files with 10 additions and 3 deletions
+7
View File
@@ -1,3 +1,10 @@
### New in 0.16.0 (released 2015/09/17)
* New: Implemented `GetMetadata` method of `IMiscellaneousClient` to retrieve information from the Meta endpoint -#892 via @haacked
* Improved: Add missing `ClosedAt` property to `Milestone` response - #890 via @geek0r
* Fixed: `NullReferenceException` when retrieving contributors for an empty repository - #897 via @adamralph
* Fixed: Bug that prevented release uploads and will unblock the entire F# ecosystem - #895 via @naveensrinivasan
### New in 0.15.0 (released 2015/09/11) ### New in 0.15.0 (released 2015/09/11)
* New: `IRepositoryContentsClient.GetAllContents` now has an overload to support specifying a reference - #730 via @goalie7960 * New: `IRepositoryContentsClient.GetAllContents` now has an overload to support specifying a reference - #730 via @goalie7960
* New: Support for retrieving rate limit information from `IMiscellaneousClient` - #848 via @Red-Folder * New: Support for retrieving rate limit information from `IMiscellaneousClient` - #848 via @Red-Folder
+3 -3
View File
@@ -3,11 +3,11 @@ using System.Reflection;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
[assembly: AssemblyProductAttribute("Octokit")] [assembly: AssemblyProductAttribute("Octokit")]
[assembly: AssemblyVersionAttribute("0.15.0")] [assembly: AssemblyVersionAttribute("0.16.0")]
[assembly: AssemblyFileVersionAttribute("0.15.0")] [assembly: AssemblyFileVersionAttribute("0.16.0")]
[assembly: ComVisibleAttribute(false)] [assembly: ComVisibleAttribute(false)]
namespace System { namespace System {
internal static class AssemblyVersionInformation { internal static class AssemblyVersionInformation {
internal const string Version = "0.15.0"; internal const string Version = "0.16.0";
} }
} }