Skip to content

Commit be50d7c

Browse files
authored
πŸ”– 5.9.0 (#647)
## 5.9.0 **Feature** - [#587](#587) Support Lottie ZIP archive files. by [@AlexV525](https://github.com/AlexV525) - [#599](#599) Use `FilterQuality.medium` for the image integration. by [@AlexV525](https://github.com/AlexV525) - [#615](#615) Support `dart_style` v3. by [@AlexV525](https://github.com/AlexV525) - [#618](#618) Remove Flare integration. by [@AlexV525](https://github.com/AlexV525) - [#619](#619) Generate package path for directory. by [@AlexV525](https://github.com/AlexV525) - [#620](#620) Format Dart files with the current Dart version instead of the latest supported. by [@AlexV525](https://github.com/AlexV525) - [#621](#621) Adds `.lottie` support. by [@AlexV525](https://github.com/AlexV525) - [#635](#635) Support `archive` v4. by [@AlexV525](https://github.com/AlexV525) - [#645](#645) Allows not enable the image integration. by [@AlexV525](https://github.com/AlexV525) **Development** - [#593](#593) Better stdouts. by [@AlexV525](https://github.com/AlexV525) - [#622](#622) Fix invalid codecov config. by [@AlexV525](https://github.com/AlexV525) - [#630](#630) Update proper EOF. by [@AlexV525](https://github.com/AlexV525) - [#643](#643) Improvements with code lints. by [@AlexV525](https://github.com/AlexV525) - [#644](#644) Format code. by [@AlexV525](https://github.com/AlexV525) **Bug fix** - [#592](#592) Accept both `flutter_gen` and `flutter_gen_runner` as the entry of build.yaml. by [@b2nkuu](https://github.com/b2nkuu)
1 parent 0a19691 commit be50d7c

File tree

7 files changed

+42
-15
lines changed

7 files changed

+42
-15
lines changed

β€ŽCHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 5.9.0
2+
3+
**Feature**
4+
- [#587](https://github.com/FlutterGen/flutter_gen/pull/587) Support Lottie ZIP archive files. by [@AlexV525](https://github.com/AlexV525)
5+
- [#599](https://github.com/FlutterGen/flutter_gen/pull/599) Use `FilterQuality.medium` for the image integration. by [@AlexV525](https://github.com/AlexV525)
6+
- [#615](https://github.com/FlutterGen/flutter_gen/pull/615) Support `dart_style` v3. by [@AlexV525](https://github.com/AlexV525)
7+
- [#618](https://github.com/FlutterGen/flutter_gen/pull/618) Remove Flare integration. by [@AlexV525](https://github.com/AlexV525)
8+
- [#619](https://github.com/FlutterGen/flutter_gen/pull/619) Generate package path for directory. by [@AlexV525](https://github.com/AlexV525)
9+
- [#620](https://github.com/FlutterGen/flutter_gen/pull/620) Format Dart files with the current Dart version instead of the latest supported. by [@AlexV525](https://github.com/AlexV525)
10+
- [#621](https://github.com/FlutterGen/flutter_gen/pull/621) Adds `.lottie` support. by [@AlexV525](https://github.com/AlexV525)
11+
- [#635](https://github.com/FlutterGen/flutter_gen/pull/635) Support `archive` v4. by [@AlexV525](https://github.com/AlexV525)
12+
- [#645](https://github.com/FlutterGen/flutter_gen/pull/645) Allows not enable the image integration. by [@AlexV525](https://github.com/AlexV525)
13+
14+
**Development**
15+
- [#593](https://github.com/FlutterGen/flutter_gen/pull/593) Better stdouts. by [@AlexV525](https://github.com/AlexV525)
16+
- [#622](https://github.com/FlutterGen/flutter_gen/pull/622) Fix invalid codecov config. by [@AlexV525](https://github.com/AlexV525)
17+
- [#630](https://github.com/FlutterGen/flutter_gen/pull/630) Update proper EOF. by [@AlexV525](https://github.com/AlexV525)
18+
- [#643](https://github.com/FlutterGen/flutter_gen/pull/643) Improvements with code lints. by [@AlexV525](https://github.com/AlexV525)
19+
- [#644](https://github.com/FlutterGen/flutter_gen/pull/644) Format code. by [@AlexV525](https://github.com/AlexV525)
20+
21+
**Bug fix**
22+
- [#592](https://github.com/FlutterGen/flutter_gen/pull/592) Accept both `flutter_gen` and `flutter_gen_runner` as the entry of build.yaml. by [@b2nkuu](https://github.com/b2nkuu)
23+
124
## 5.8.0
225

326
**Feature**

β€Žexamples/example/pubspec.yaml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,21 @@ dependencies:
1010
flutter:
1111
sdk: flutter
1212

13-
flutter_svg: ^2.0.0
14-
rive: ^0.11.0
15-
lottie: ^2.0.0
16-
1713
example_resources:
1814
path: ../example_resources
1915

16+
flutter_svg: ^2.0.0
17+
lottie: ^2.0.0
18+
rive: ^0.11.0
19+
2020
dev_dependencies:
21-
lints: ^2.0.0
22-
build_runner: ^2.0.0
23-
flutter_gen_runner: ^5.8.0
2421
flutter_test:
2522
sdk: flutter
23+
flutter_gen_runner:
24+
path: ../../packages/runner
25+
26+
lints: ^2.0.0
27+
build_runner: ^2.0.0
2628

2729
flutter_gen:
2830
output: lib/gen/ # Optional (default: lib/gen/)

β€Žexamples/example_resources/pubspec.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,14 @@ dependencies:
1111
sdk: flutter
1212

1313
flutter_svg: ^2.0.0
14-
rive: ^0.11.0
1514
lottie: ^2.0.0
15+
rive: ^0.11.0
1616

1717
dev_dependencies:
18+
flutter_gen_runner:
19+
path: ../../packages/runner
20+
1821
build_runner: ^2.0.0
19-
flutter_gen_runner: ^5.8.0
2022

2123
flutter_gen:
2224
output: lib/gen/

β€Žpackages/command/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_gen
22
description: The Flutter code generator for your assets, fonts, colors, … β€” Get rid of all String-based APIs.
3-
version: 5.8.0
3+
version: 5.9.0
44
homepage: https://github.com/FlutterGen/flutter_gen
55
repository: https://github.com/FlutterGen/flutter_gen
66
documentation: https://github.com/FlutterGen/flutter_gen
@@ -13,7 +13,7 @@ executables:
1313
fluttergen: flutter_gen_command
1414

1515
dependencies:
16-
flutter_gen_core: 5.8.0
16+
flutter_gen_core: 5.9.0
1717
args: ^2.0.0
1818

1919
dev_dependencies:

β€Žpackages/core/lib/version.gen.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
/// DO NOT MODIFY BY HAND, Generated by version_gen
2-
String packageVersion = '5.8.0';
2+
String packageVersion = '5.9.0';

β€Žpackages/core/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_gen_core
22
description: The Flutter code generator for your assets, fonts, colors, … β€” Get rid of all String-based APIs.
3-
version: 5.8.0
3+
version: 5.9.0
44
homepage: https://github.com/FlutterGen/flutter_gen
55
repository: https://github.com/FlutterGen/flutter_gen
66
documentation: https://github.com/FlutterGen/flutter_gen

β€Žpackages/runner/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_gen_runner
22
description: The Flutter code generator for your assets, fonts, colors, … β€” Get rid of all String-based APIs.
3-
version: 5.8.0
3+
version: 5.9.0
44
homepage: https://github.com/FlutterGen/flutter_gen
55
repository: https://github.com/FlutterGen/flutter_gen
66
documentation: https://github.com/FlutterGen/flutter_gen
@@ -10,7 +10,7 @@ environment:
1010
sdk: '>=2.17.0 <4.0.0'
1111

1212
dependencies:
13-
flutter_gen_core: 5.8.0
13+
flutter_gen_core: 5.9.0
1414
build: ^2.0.0
1515
collection: ^1.17.0
1616
crypto: ^3.0.0

0 commit comments

Comments
Β (0)