From dc75c78c63baaaecdc52c4e81393d613697fa906 Mon Sep 17 00:00:00 2001 From: Brandon Trautmann Date: Fri, 15 Nov 2024 14:49:41 -0500 Subject: [PATCH] chore: prep 0.11.0 release (#135) * chore: prep 0.11.0 release * add breaking change warning to 0.11.0 release notes --- CHANGELOG.md | 19 +++++++++++++++++++ pubspec.yaml | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 41514d9..c06b03c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +# 0.11.0 + +## What's Changed +* fix!: use textScaler instead of a double by @vanlooverenkoen in https://github.com/Betterment/alchemist/pull/131 +* feat!: Added nameTextStyle by @vanlooverenkoen in https://github.com/Betterment/alchemist/pull/132 +* fix: added configurable padding by @vanlooverenkoen in https://github.com/Betterment/alchemist/pull/133 + +## :warning: Breaking Changes + +https://github.com/Betterment/alchemist/pull/131 and https://github.com/Betterment/alchemist/pull/132 change the APIs of `GoldenTestScenario.withTextScaleFactor` and `GoldenTestTheme` respectively. If you are using these APIs, you will need to update your code to match the new API. + +## New Contributors +* @vanlooverenkoen made their first contribution in https://github.com/Betterment/alchemist/pull/131 + +**Full Changelog**: https://github.com/Betterment/alchemist/compare/v0.10.0...v0.11.0 + # 0.10.0 ## What's Changed @@ -5,6 +21,9 @@ * fix: Could not override GoldenTestTheme by @Brainyoo in https://github.com/Betterment/alchemist/pull/127 * ci: channel compatibility workflow by @btrautmann in https://github.com/Betterment/alchemist/pull/123 +## :warning: Breaking Changes + +In https://github.com/Betterment/alchemist/pull/123 a `Padding` `Widget` was removed that impacted the outputted golden files. However, this `Padding` was made configurable in https://github.com/Betterment/alchemist/pull/133 so you can upgrade directly to `0.11.0` and set a `Padding` value of `const EdgeInsets.all(8)` to preserve the original padding value. **Full Changelog**: https://github.com/Betterment/alchemist/compare/v0.9.0...v0.10.0 diff --git a/pubspec.yaml b/pubspec.yaml index 3db1791..22617ab 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: alchemist description: A support package that aims to make golden testing in Flutter easier and more streamlined. -version: 0.10.0 +version: 0.11.0 homepage: https://github.com/Betterment/alchemist repository: https://github.com/Betterment/alchemist