diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a7130553..d52d2b97 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.12.0" + ".": "0.13.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 497fb854..dc9ac890 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [0.13.0](https://github.com/ZebraDevs/zeta_flutter/compare/v0.12.0...v0.13.0) (2024-06-28) + + +### ✨ New Features + +* **UX-1117:** Semantic tags for SYNC ([#119](https://github.com/ZebraDevs/zeta_flutter/issues/119)) ([1177222](https://github.com/ZebraDevs/zeta_flutter/commit/1177222bb50904dd5a17c12ccf77994239c4f881)) + + +### 🪲 Bug Fixes + +* add braces to fab color ([#110](https://github.com/ZebraDevs/zeta_flutter/issues/110)) ([82c5feb](https://github.com/ZebraDevs/zeta_flutter/commit/82c5febf32a0529493d886e3f8c3290071bbce53)) +* Changed the functionality of dropdown sizes. Mini now sets the width of the menu to its largest child, and standard will set the minimum width to the width of the dropdown's parent. ([d9bfe19](https://github.com/ZebraDevs/zeta_flutter/commit/d9bfe19f7b32daac5963e628e7d3499d07ff17c1)) +* Removed the default offest from dropdown and added an offest. ([d9bfe19](https://github.com/ZebraDevs/zeta_flutter/commit/d9bfe19f7b32daac5963e628e7d3499d07ff17c1)) +* syntax error in action ([#118](https://github.com/ZebraDevs/zeta_flutter/issues/118)) ([a5fee0b](https://github.com/ZebraDevs/zeta_flutter/commit/a5fee0b4b30db040b400c86db1acd217a10ddc76)) +* **UX-1006:** Gave dropdown functionality to dropdown buttons in button groups ([#115](https://github.com/ZebraDevs/zeta_flutter/issues/115)) ([d9bfe19](https://github.com/ZebraDevs/zeta_flutter/commit/d9bfe19f7b32daac5963e628e7d3499d07ff17c1)) + ## [0.12.0](https://github.com/ZebraDevs/zeta_flutter/compare/v0.11.2...v0.12.0) (2024-06-24) diff --git a/example/lib/home.dart b/example/lib/home.dart index 9da30dba..13bb943b 100644 --- a/example/lib/home.dart +++ b/example/lib/home.dart @@ -156,7 +156,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.12.0', + name: 'zeta_flutter v0.13.0', // x-release-please-end child: SingleChildScrollView( child: Column( diff --git a/example/widgetbook/pages/introduction.dart b/example/widgetbook/pages/introduction.dart index cf197070..b194f38a 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.12.0', + 'zeta_flutter v0.13.0', // x-release-please-end style: ZetaTextStyles.displayLarge.copyWith(fontSize: largeScreen ? null : 24), ), diff --git a/pubspec.yaml b/pubspec.yaml index 65f8d3c7..60706ac8 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: zeta_flutter -version: 0.12.0 +version: 0.13.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.