From 71f9e1e502f820ad18846e3d653651dc91dee5f7 Mon Sep 17 00:00:00 2001 From: Rob Becker Date: Sat, 8 Jan 2022 17:33:56 -0700 Subject: [PATCH] prep 9.0.0 changelog --- CHANGELOG.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd6470b5..568d2082 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +## 9.0.0 + +**Breaking change:** In the Gist class, the old type of files was +```dart +List? files; +``` +and the new type is +```dart +Map? files; +``` + +**Breaking change:** In the GistFile class, the name property is now filename + +* Fix getting gists by @robrbecker in https://github.com/SpinlockLabs/github.dart/pull/294 + +**Full Changelog**: https://github.com/SpinlockLabs/github.dart/compare/8.5.0...9.0.0 + ## 8.5.0 * Adds listing and creating PR Reviews, listing users in an org by @robrbecker in https://github.com/SpinlockLabs/github.dart/pull/287