Skip to content

Commit 46c351b

Browse files
github-actions[bot]actions-usertilucasoli
authoredAug 22, 2024··
chore: version packages (#464)
* chore(release): publish packages - [email protected] - [email protected] - [email protected] - [email protected]+6 * adjustment in changelog --------- Co-authored-by: GitHub Action <[email protected]> Co-authored-by: Lucas Oliveira <[email protected]>
1 parent 2829b73 commit 46c351b

File tree

10 files changed

+79
-11
lines changed

10 files changed

+79
-11
lines changed
 

‎CHANGELOG.md

+45
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,51 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## 2024-08-22
7+
8+
### Changes
9+
10+
---
11+
12+
Packages with breaking changes:
13+
14+
- There are no breaking changes in this release.
15+
16+
Packages with other changes:
17+
18+
- [`mix` - `v1.4.6`](#mix---v146)
19+
- [`mix_annotations` - `v0.3.0`](#mix_annotations---v030)
20+
- [`mix_generator` - `v0.3.0`](#mix_generator---v030)
21+
- [`remix` - `v0.0.2+6`](#remix---v0026)
22+
23+
Packages with dependency updates only:
24+
25+
> Packages listed below depend on other packages in this workspace that have had changes. Their versions have been incremented to bump the minimum dependency versions of the packages they depend upon in this project.
26+
27+
- `remix` - `v0.0.2+6`
28+
29+
---
30+
31+
#### `mix` - `v1.4.6`
32+
33+
- **FIX**(docs): fix fn level docs for Style::applyVariants (#460).
34+
- **FIX**: Shadow list animation (#445).
35+
- **FIX**: SpecModifiers were taking a long time to animate. (#457).
36+
- **FEAT**: Create mouse cursor Decorator (#263).
37+
- **FEAT**: Add parameter onEnd for AnimatedStyle (#458).
38+
- **FEAT**: `SingleChildScrollView` widget modifier (#427).
39+
- **FEAT**: Remix improvements and further improvements (#410).
40+
41+
#### `mix_annotations` - `v0.3.0`
42+
43+
- **FIX**: SpecModifiers were taking a long time to animate. (#457).
44+
45+
#### `mix_generator` - `v0.3.0`
46+
47+
- **FIX**: SpecModifiers were taking a long time to animate. (#457).
48+
- **FIX**: Shadow list animation (#445).
49+
50+
651
## 2024-08-08
752

853
### Changes

‎packages/mix/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 1.4.6
2+
3+
- **FIX**(docs): fix fn level docs for Style::applyVariants (#460).
4+
- **FIX**: Shadow list animation (#445).
5+
- **FIX**: SpecModifiers were taking a long time to animate. (#457).
6+
- **FEAT**: Create mouse cursor Decorator (#263).
7+
- **FEAT**: Add parameter onEnd for AnimatedStyle (#458).
8+
- **FEAT**: `SingleChildScrollView` widget modifier (#427).
9+
- **FEAT**: Remix improvements and further improvements (#410).
10+
111
## 1.4.5
212

313
- **FIX**: HitTestBehavior when there is an Interectable in the tree (#437).

‎packages/mix/pubspec.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: mix
22
description: An expressive way to effortlessly build design systems in Flutter.
3-
version: 1.4.5
3+
version: 1.4.6
44
homepage: https://github.com/leoafarias/mix
55

66
environment:
77
sdk: ">=3.3.0 <4.0.0"
88
flutter: ">=3.19.0"
99

1010
dependencies:
11-
mix_annotations: ^0.2.1
11+
mix_annotations: ^0.3.0
1212
flutter:
1313
sdk: flutter
1414

@@ -18,5 +18,5 @@ dev_dependencies:
1818
build_runner: ^2.4.9
1919
flutter_test:
2020
sdk: flutter
21-
mix_generator: ^0.2.2+1
21+
mix_generator: ^0.3.0
2222

‎packages/mix_annotations/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.3.0
2+
3+
- **FIX**: SpecModifiers were taking a long time to animate. (#457).
4+
15
## 0.2.1
26

37
- **FEAT**: MixableSpec now supports `withCopyWith`, `withEquality`, `withLerp`, and `skipUtility` (#396).

‎packages/mix_annotations/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: mix_annotations
22
description: Annotations for mix and mix_generator
3-
version: 0.2.1
3+
version: 0.3.0
44
repository: https://github.com/conceptadev/mix
55

66
environment:

‎packages/mix_generator/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.3.0
2+
3+
- **FIX**: SpecModifiers were taking a long time to animate. (#457).
4+
- **FIX**: Shadow list animation (#445).
5+
16
## 0.2.2+1
27

38
- **DOCS**: improve mix theme data features explanations (#404).

‎packages/mix_generator/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: mix_generator
22
description: A code generator for Mix, an expressive way to effortlessly build design systems in Flutter.
3-
version: 0.2.2+1
3+
version: 0.3.0
44
homepage: https://github.com/conceptadev/mix
55

66
environment:
77
sdk: ">=3.3.0 <4.0.0"
88
flutter: ">=3.19.0"
99

1010
dependencies:
11-
mix_annotations: ^0.2.1
11+
mix_annotations: ^0.3.0
1212
build: ^2.4.1
1313
source_gen: ^1.5.0
1414
analyzer: ^6.1.0

‎packages/remix/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.0.2+6
2+
3+
- Update a dependency to the latest release.
4+
15
## 0.0.2+5
26

37
- Update a dependency to the latest release.

‎packages/remix/demo/pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dependencies:
1818
remix:
1919
path: ../
2020

21-
mix: ^1.4.4
21+
mix: ^1.4.6
2222

2323
dev_dependencies:
2424
flutter_test:

‎packages/remix/pubspec.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
name: remix
22
description: Completely unstyled, widgets designed to integrate with Mix
33

4-
version: 0.0.2+5
4+
version: 0.0.2+6
55

66
environment:
77
sdk: ">=3.3.0 <4.0.0"
88

99
dependencies:
1010
flutter:
1111
sdk: flutter
12-
mix: ^1.4.4
13-
mix_annotations: ^0.2.1
12+
mix: ^1.4.6
13+
mix_annotations: ^0.3.0
1414

1515
dev_dependencies:
1616
flutter_test:
1717
sdk: flutter
1818
# custom_lint: ^0.6.4
1919
# mix_lint: ^0.1.1
20-
mix_generator: ^0.2.2+1
20+
mix_generator: ^0.3.0
2121
build_runner: ^2.4.9
2222
#lint
2323
flutter_lints: ^4.0.0

0 commit comments

Comments
 (0)
Please sign in to comment.