Skip to content

Commit b9310ce

Browse files
committed
chore(main): release 0.16.0
1 parent a77211a commit b9310ce

File tree

5 files changed

+44
-4
lines changed

5 files changed

+44
-4
lines changed

.release-please-manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.15.2"
2+
".": "0.16.0"
33
}

CHANGELOG.md

+40
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,45 @@
11
# Changelog
22

3+
## [0.16.0](https://github.com/ZebraDevs/zeta_flutter/compare/v0.15.2...v0.16.0) (2024-09-10)
4+
5+
6+
### ✨ New Features
7+
8+
* added swipe-able actions to notification list item ([057defd](https://github.com/ZebraDevs/zeta_flutter/commit/057defd5a945382826ae8746416473943304da32))
9+
* updated notification list item to match latest design ([057defd](https://github.com/ZebraDevs/zeta_flutter/commit/057defd5a945382826ae8746416473943304da32))
10+
* **UX-1073:** List Item notification ([#172](https://github.com/ZebraDevs/zeta_flutter/issues/172)) ([057defd](https://github.com/ZebraDevs/zeta_flutter/commit/057defd5a945382826ae8746416473943304da32))
11+
12+
13+
### 🪲 Bug Fixes
14+
15+
* _getSlidableExtend() now won't return over 1.0 ([057defd](https://github.com/ZebraDevs/zeta_flutter/commit/057defd5a945382826ae8746416473943304da32))
16+
* A variety of small bug fixes ([#168](https://github.com/ZebraDevs/zeta_flutter/issues/168)) ([cb37705](https://github.com/ZebraDevs/zeta_flutter/commit/cb3770520d21b6e1de4f0bb928d800b12fc49042))
17+
* Add PlatformIs to not use dart:io ([cb37705](https://github.com/ZebraDevs/zeta_flutter/commit/cb3770520d21b6e1de4f0bb928d800b12fc49042))
18+
* Border sizes ([cb37705](https://github.com/ZebraDevs/zeta_flutter/commit/cb3770520d21b6e1de4f0bb928d800b12fc49042))
19+
* chat item ([#174](https://github.com/ZebraDevs/zeta_flutter/issues/174)) ([3ac64a7](https://github.com/ZebraDevs/zeta_flutter/commit/3ac64a7fa68de77d865c0f95745fdbac760d0984))
20+
* chat item actions _getSlidableExtend now won't return over 1.0 ([3ac64a7](https://github.com/ZebraDevs/zeta_flutter/commit/3ac64a7fa68de77d865c0f95745fdbac760d0984))
21+
* Spacings in example app ([cb37705](https://github.com/ZebraDevs/zeta_flutter/commit/cb3770520d21b6e1de4f0bb928d800b12fc49042))
22+
* **UX-1141:** Update Spacing tokens ([#159](https://github.com/ZebraDevs/zeta_flutter/issues/159)) ([d22898f](https://github.com/ZebraDevs/zeta_flutter/commit/d22898f7e77704b5a4dd628320662530f1c2a1b4))
23+
24+
25+
### ⛓️ Dependencies
26+
27+
* **automated:** Update tokens - 2024-08-27 ([#163](https://github.com/ZebraDevs/zeta_flutter/issues/163)) ([b499e22](https://github.com/ZebraDevs/zeta_flutter/commit/b499e221c58327ac6e6d18851986d3a503464de6))
28+
* **automated:** Update tokens ([#170](https://github.com/ZebraDevs/zeta_flutter/issues/170)) ([361b1c7](https://github.com/ZebraDevs/zeta_flutter/commit/361b1c7b7a271a990994ce35ac5d800315e7a753))
29+
* **automated:** Update tokens ([#176](https://github.com/ZebraDevs/zeta_flutter/issues/176)) ([2bd38de](https://github.com/ZebraDevs/zeta_flutter/commit/2bd38de3454f7544c0e19f9b60f1c2ce9e8e310c))
30+
31+
32+
### 🧪 Tests
33+
34+
* Add new GoldenFiles class to simplify generating golden file Uris ([a77211a](https://github.com/ZebraDevs/zeta_flutter/commit/a77211a9fd33dfee170605a33098e9df6d634be2))
35+
* Fix bug in golden tests that meant they failed on windows ([#177](https://github.com/ZebraDevs/zeta_flutter/issues/177)) ([a77211a](https://github.com/ZebraDevs/zeta_flutter/commit/a77211a9fd33dfee170605a33098e9df6d634be2))
36+
37+
38+
### 🧹 Miscellaneous Chores
39+
40+
* **automated:** Lint commit and format ([3ac64a7](https://github.com/ZebraDevs/zeta_flutter/commit/3ac64a7fa68de77d865c0f95745fdbac760d0984))
41+
* Update third party licenses ([cb37705](https://github.com/ZebraDevs/zeta_flutter/commit/cb3770520d21b6e1de4f0bb928d800b12fc49042))
42+
343
## [0.15.2](https://github.com/ZebraDevs/zeta_flutter/compare/v0.15.1...v0.15.2) (2024-08-23)
444

545

example/lib/home.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ class _HomeState extends State<Home> {
156156
final _theme = theme..sort((a, b) => a.name.compareTo(b.name));
157157
return ExampleScaffold(
158158
// x-release-please-start-version
159-
name: 'zeta_flutter v0.15.2',
159+
name: 'zeta_flutter v0.16.0',
160160
// x-release-please-end
161161
child: SingleChildScrollView(
162162
child: Column(

example/widgetbook/pages/introduction.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ class _IntroductionWidgetbookState extends State<IntroductionWidgetbook> {
7171
Expanded(
7272
child: Text(
7373
// x-release-please-start-version
74-
'zeta_flutter v0.15.2',
74+
'zeta_flutter v0.16.0',
7575
// x-release-please-end
7676
style: ZetaTextStyles.displayLarge.copyWith(fontSize: largeScreen ? null : 24),
7777
),

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: zeta_flutter
2-
version: 0.15.2
2+
version: 0.16.0
33
description: Zeta is the new, formal, standardized Zebra Design System based off
44
the successes of ZDS (Zebra Design System). This package is in pre-release,
55
and so many aspects are incomplete.

0 commit comments

Comments
 (0)