Skip to content

Commit b240f81

Browse files
πŸ”– 5.8.0 (#582)
## 5.8.0 **Feature** - [#555](FlutterGen/flutter_gen#555) Support build.yaml to configure. by [@b2nkuu](https://github.com/b2nkuu) - [#567](FlutterGen/flutter_gen#567) Generate the `package` constant for generated font classes. by [@TesteurManiak](https://github.com/TesteurManiak) - [#569](FlutterGen/flutter_gen#569) Enables `gaplessPlayback` by default for image assets. by [@AlexV525](https://github.com/AlexV525) - [#580](FlutterGen/flutter_gen#580) Allows `mime: '>=1.0.0 <3.0.0'`. by [@AlexV525](https://github.com/AlexV525) **Development** - [#563](FlutterGen/flutter_gen#563) Fix concurrency execution with melos. by [@wasabeef](https://github.com/wasabeef)
1 parent fca3a1a commit b240f81

File tree

7 files changed

+20
-10
lines changed

7 files changed

+20
-10
lines changed

β€ŽCHANGELOG.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 5.8.0
2+
3+
**Feature**
4+
- [#555](https://github.com/FlutterGen/flutter_gen/pull/555) Support build.yaml to configure. by [@b2nkuu](https://github.com/b2nkuu)
5+
- [#567](https://github.com/FlutterGen/flutter_gen/pull/567) Generate the `package` constant for generated font classes. by [@TesteurManiak](https://github.com/TesteurManiak)
6+
- [#569](https://github.com/FlutterGen/flutter_gen/pull/569) Enables `gaplessPlayback` by default for image assets. by [@AlexV525](https://github.com/AlexV525)
7+
- [#580](https://github.com/FlutterGen/flutter_gen/pull/580) Allows `mime: '>=1.0.0 <3.0.0'`. by [@AlexV525](https://github.com/AlexV525)
8+
9+
**Development**
10+
- [#563](https://github.com/FlutterGen/flutter_gen/pull/563) Fix concurrency execution with melos. by [@wasabeef](https://github.com/wasabeef)
11+
112
## 5.7.0
213

314
**Feature**
@@ -10,8 +21,7 @@
1021

1122
**Bug fix**
1223
- [#530](https://github.com/FlutterGen/flutter_gen/pull/530) Fix the Flavored assets. by [@AlexV525](https://github.com/AlexV525)
13-
- Please submit issues later if you have any feedback, this is blocking users from generating files if they are using flavors or transformations and there is no workaround for them.
14-
- [#532](https://github.com/FlutterGen/flutter_gen/pull/532) Provid the theme to SvgAssetLoader instead of SvgPicture. by [@Kirpal](https://github.com/Kirpal)
24+
- [#532](https://github.com/FlutterGen/flutter_gen/pull/532) Provide the theme to SvgAssetLoader instead of SvgPicture. by [@Kirpal](https://github.com/Kirpal)
1525

1626
## 5.5.0+1
1727

β€Žexamples/example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dependencies:
2121
dev_dependencies:
2222
lints: ^2.0.0
2323
build_runner: ^2.0.0
24-
flutter_gen_runner: ^5.7.0
24+
flutter_gen_runner: ^5.8.0
2525
flutter_test:
2626
sdk: flutter
2727

β€Žexamples/example_resources/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dependencies:
1717

1818
dev_dependencies:
1919
build_runner: ^2.0.0
20-
flutter_gen_runner: ^5.7.0
20+
flutter_gen_runner: ^5.8.0
2121

2222
flutter_gen:
2323
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.7.0
3+
version: 5.8.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.7.0
16+
flutter_gen_core: 5.8.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.7.0';
2+
String packageVersion = '5.8.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.7.0
3+
version: 5.8.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.7.0
3+
version: 5.8.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.7.0
13+
flutter_gen_core: 5.8.0
1414
build: ^2.0.0
1515
collection: ^1.17.0
1616
crypto: ^3.0.0

0 commit comments

Comments
Β (0)