Skip to content

Commit ce3fdc7

Browse files
authored
πŸ”– 5.11.0 (#700)
## 5.11.0 **Feature** - [#576](#576) Add support for deferred components. by [@ianmaciel](https://github.com/ianmaciel) - [#676](#676) Add new option `parse_animation` to parse metadata for animated images. by [@huandu](https://github.com/huandu) - [#680](#680) Add svg `ColorMapper` to svg loader. by [@AlexV525](https://github.com/AlexV525) - [#685](#685) Use `.vec` SVG class for `vector_graphics_compiler` transformed assets. by [@Albert221](https://github.com/Albert221) - [#697](#697) Refactor how generated files are being formatted. by [@AlexV525](https://github.com/AlexV525) **Development** - [#681](#682) Bump `dart_style` v3 which also requires Dart 3.4. by [@AlexV525](https://github.com/AlexV525) - [#682](#682) Add Facts generate utils. by [@AlexV525](https://github.com/AlexV525) - [#694](#694) Use fine-grained logger instead of `stdout.writeln`. by [@AlexV525](https://github.com/AlexV525) - [#698](#698) Improve workflow with automatic formatting. by [@AlexV525](https://github.com/AlexV525) - [#699](#699) Allow `build 3.0.0`. by [@davidmorgan](https://github.com/davidmorgan)
1 parent 356d11d commit ce3fdc7

File tree

4 files changed

+26
-8
lines changed

4 files changed

+26
-8
lines changed

β€ŽCHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## 5.11.0
2+
3+
**Feature**
4+
5+
- [#576](https://github.com/FlutterGen/flutter_gen/pull/576) Add support for deferred components. by [@ianmaciel](https://github.com/ianmaciel)
6+
- [#676](https://github.com/FlutterGen/flutter_gen/pull/676) Add new option `parse_animation` to parse metadata for animated images. by [@HuanDu](https://github.com/huandu)
7+
- [#680](https://github.com/FlutterGen/flutter_gen/pull/680) Add svg `ColorMapper` to svg loader. by [@AlexV525](https://github.com/AlexV525)
8+
- [#685](https://github.com/FlutterGen/flutter_gen/pull/685) Use `.vec` SVG class for `vector_graphics_compiler` transformed assets. by [@Albert221](https://github.com/Albert221)
9+
- [#697](https://github.com/FlutterGen/flutter_gen/pull/697) Refactor how generated files are being formatted. by [@AlexV525](https://github.com/AlexV525)
10+
11+
**Development**
12+
13+
- [#681](https://github.com/FlutterGen/flutter_gen/pull/682) Bump `dart_style` v3 which also requires Dart 3.4. by [@AlexV525](https://github.com/AlexV525)
14+
- [#682](https://github.com/FlutterGen/flutter_gen/pull/682) Add Facts generate utils. by [@AlexV525](https://github.com/AlexV525)
15+
- [#694](https://github.com/FlutterGen/flutter_gen/pull/694) Use fine-grained logger instead of `stdout.writeln`. by [@AlexV525](https://github.com/AlexV525)
16+
- [#698](https://github.com/FlutterGen/flutter_gen/pull/698) Improve workflow with automatic formatting. by [@AlexV525](https://github.com/AlexV525)
17+
- [#699](https://github.com/FlutterGen/flutter_gen/pull/699) Allow `build 3.0.0`. by [@davidmorgan](https://github.com/davidmorgan)
18+
119
## 5.10.0
220

321
**Feature**

β€Žpackages/command/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
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.10.0
3+
version: 5.11.0
44
homepage: https://github.com/FlutterGen/flutter_gen
5-
repository: https://github.com/FlutterGen/flutter_gen
5+
repository: https://github.com/FlutterGen/flutter_gen/tree/main/packages/command
66
documentation: https://github.com/FlutterGen/flutter_gen
77
issue_tracker: https://github.com/FlutterGen/flutter_gen/issues
88

@@ -13,7 +13,7 @@ executables:
1313
fluttergen: flutter_gen_command
1414

1515
dependencies:
16-
flutter_gen_core: 5.10.0
16+
flutter_gen_core: 5.11.0
1717

1818
args: ^2.0.0
1919
logging: ^1.3.0

β€Žpackages/core/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
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.10.0
3+
version: 5.11.0
44
homepage: https://github.com/FlutterGen/flutter_gen
5-
repository: https://github.com/FlutterGen/flutter_gen
5+
repository: https://github.com/FlutterGen/flutter_gen/tree/main/packages/core
66
documentation: https://github.com/FlutterGen/flutter_gen
77
issue_tracker: https://github.com/FlutterGen/flutter_gen/issues
88

β€Žpackages/runner/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
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.10.0
3+
version: 5.11.0
44
homepage: https://github.com/FlutterGen/flutter_gen
5-
repository: https://github.com/FlutterGen/flutter_gen
5+
repository: https://github.com/FlutterGen/flutter_gen/tree/main/packages/runner
66
documentation: https://github.com/FlutterGen/flutter_gen
77
issue_tracker: https://github.com/FlutterGen/flutter_gen/issues
88

99
environment:
1010
sdk: ^3.4.0
1111

1212
dependencies:
13-
flutter_gen_core: 5.10.0
13+
flutter_gen_core: 5.11.0
1414
build: '>=2.0.0 <4.0.0'
1515
collection: ^1.17.0
1616
crypto: ^3.0.0

0 commit comments

Comments
Β (0)