diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 95e4ab67..a7130553 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.11.2" + ".": "0.12.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index f4df67c1..f73ddf54 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,40 @@ # Changelog +## [0.12.0](https://github.com/ZebraDevs/zeta_flutter/compare/v0.11.2...v0.12.0) (2024-06-17) + + +### ✨ New Features + +* added inkwells to checkbox and radio button ([a8b31d3](https://github.com/ZebraDevs/zeta_flutter/commit/a8b31d32fbe0f0ea3943bd8f03478d3bb4b6d4b5)) +* Created dropdown list item ([#101](https://github.com/ZebraDevs/zeta_flutter/issues/101)) ([868b26c](https://github.com/ZebraDevs/zeta_flutter/commit/868b26cfbd64a521d6726e3271421a052257ec06)) +* Created list item variants ([#98](https://github.com/ZebraDevs/zeta_flutter/issues/98)) ([a8b31d3](https://github.com/ZebraDevs/zeta_flutter/commit/a8b31d32fbe0f0ea3943bd8f03478d3bb4b6d4b5)) +* Created ZetaAnimationDuration tokens ([868b26c](https://github.com/ZebraDevs/zeta_flutter/commit/868b26cfbd64a521d6726e3271421a052257ec06)) +* created ZetaList to add borders to list items ([a8b31d3](https://github.com/ZebraDevs/zeta_flutter/commit/a8b31d32fbe0f0ea3943bd8f03478d3bb4b6d4b5)) + + +### 🪲 Bug Fixes + +* minor bugs on ZetaChatItem ([#105](https://github.com/ZebraDevs/zeta_flutter/issues/105)) ([c37e51d](https://github.com/ZebraDevs/zeta_flutter/commit/c37e51d1b2be40e03d35f63db79939247315696c)) +* removed hover color on disabled radio buttons ([a8b31d3](https://github.com/ZebraDevs/zeta_flutter/commit/a8b31d32fbe0f0ea3943bd8f03478d3bb4b6d4b5)) + + +### 📈 Documentation + +* Added guides for golden and unit testing ([4b41f73](https://github.com/ZebraDevs/zeta_flutter/commit/4b41f738da8d9c45783159a0b8e36299f9cf6df3)) +* Fix documentation macros ([c37e51d](https://github.com/ZebraDevs/zeta_flutter/commit/c37e51d1b2be40e03d35f63db79939247315696c)) + + +### 🧪 Tests + +* 100% test coverage for theme, utils, Zeta and ZetaProvider ([4b41f73](https://github.com/ZebraDevs/zeta_flutter/commit/4b41f738da8d9c45783159a0b8e36299f9cf6df3)) +* Added ZetaTooltip test ([4b41f73](https://github.com/ZebraDevs/zeta_flutter/commit/4b41f738da8d9c45783159a0b8e36299f9cf6df3)) + + +### 🧹 Miscellaneous Chores + +* rename debounce file ([c37e51d](https://github.com/ZebraDevs/zeta_flutter/commit/c37e51d1b2be40e03d35f63db79939247315696c)) +* Update widgetbook to pull readme from github ([c37e51d](https://github.com/ZebraDevs/zeta_flutter/commit/c37e51d1b2be40e03d35f63db79939247315696c)) + ## [0.11.2](https://github.com/ZebraDevs/zeta_flutter/compare/v0.11.1...v0.11.2) (2024-06-11) diff --git a/example/lib/home.dart b/example/lib/home.dart index 4f43ba7b..9d20ec6b 100644 --- a/example/lib/home.dart +++ b/example/lib/home.dart @@ -153,7 +153,7 @@ class _HomeState extends State { final _theme = theme..sort((a, b) => a.name.compareTo(b.name)); return ExampleScaffold( // x-release-please-start-version - name: 'zeta_flutter v0.11.2', + name: 'zeta_flutter v0.12.0', // x-release-please-end child: SingleChildScrollView( child: Column( diff --git a/example/widgetbook/pages/introduction.dart b/example/widgetbook/pages/introduction.dart index bd24bfb2..cf197070 100644 --- a/example/widgetbook/pages/introduction.dart +++ b/example/widgetbook/pages/introduction.dart @@ -70,7 +70,7 @@ class _IntroductionWidgetbookState extends State { Expanded( child: Text( // x-release-please-start-version - 'zeta_flutter v0.11.2', + 'zeta_flutter v0.12.0', // x-release-please-end style: ZetaTextStyles.displayLarge.copyWith(fontSize: largeScreen ? null : 24), ), diff --git a/pubspec.yaml b/pubspec.yaml index a11b7581..7ac9d0f0 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: zeta_flutter -version: 0.11.2 +version: 0.12.0 description: Zeta is the new, formal, standardized Zebra Design System based off the successes of ZDS (Zebra Design System). This package is in pre-release, and so many aspects are incomplete.