diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a77029e3..1d529ffaa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,26 @@ +## 5.9.0 + +**Feature** +- [#587](https://github.com/FlutterGen/flutter_gen/pull/587) Support Lottie ZIP archive files. by [@AlexV525](https://github.com/AlexV525) +- [#599](https://github.com/FlutterGen/flutter_gen/pull/599) Use `FilterQuality.medium` for the image integration. by [@AlexV525](https://github.com/AlexV525) +- [#615](https://github.com/FlutterGen/flutter_gen/pull/615) Support `dart_style` v3. by [@AlexV525](https://github.com/AlexV525) +- [#618](https://github.com/FlutterGen/flutter_gen/pull/618) Remove Flare integration. by [@AlexV525](https://github.com/AlexV525) +- [#619](https://github.com/FlutterGen/flutter_gen/pull/619) Generate package path for directory. by [@AlexV525](https://github.com/AlexV525) +- [#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) +- [#621](https://github.com/FlutterGen/flutter_gen/pull/621) Adds `.lottie` support. by [@AlexV525](https://github.com/AlexV525) +- [#635](https://github.com/FlutterGen/flutter_gen/pull/635) Support `archive` v4. by [@AlexV525](https://github.com/AlexV525) +- [#645](https://github.com/FlutterGen/flutter_gen/pull/645) Allows not enable the image integration. by [@AlexV525](https://github.com/AlexV525) + +**Development** +- [#593](https://github.com/FlutterGen/flutter_gen/pull/593) Better stdouts. by [@AlexV525](https://github.com/AlexV525) +- [#622](https://github.com/FlutterGen/flutter_gen/pull/622) Fix invalid codecov config. by [@AlexV525](https://github.com/AlexV525) +- [#630](https://github.com/FlutterGen/flutter_gen/pull/630) Update proper EOF. by [@AlexV525](https://github.com/AlexV525) +- [#643](https://github.com/FlutterGen/flutter_gen/pull/643) Improvements with code lints. by [@AlexV525](https://github.com/AlexV525) +- [#644](https://github.com/FlutterGen/flutter_gen/pull/644) Format code. by [@AlexV525](https://github.com/AlexV525) + +**Bug fix** +- [#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) + ## 5.8.0 **Feature** diff --git a/examples/example/pubspec.yaml b/examples/example/pubspec.yaml index 62654fd8e..435c5e156 100644 --- a/examples/example/pubspec.yaml +++ b/examples/example/pubspec.yaml @@ -10,19 +10,21 @@ dependencies: flutter: sdk: flutter - flutter_svg: ^2.0.0 - rive: ^0.11.0 - lottie: ^2.0.0 - example_resources: path: ../example_resources + flutter_svg: ^2.0.0 + lottie: ^2.0.0 + rive: ^0.11.0 + dev_dependencies: - lints: ^2.0.0 - build_runner: ^2.0.0 - flutter_gen_runner: ^5.8.0 flutter_test: sdk: flutter + flutter_gen_runner: + path: ../../packages/runner + + lints: ^2.0.0 + build_runner: ^2.0.0 flutter_gen: output: lib/gen/ # Optional (default: lib/gen/) diff --git a/examples/example_resources/pubspec.yaml b/examples/example_resources/pubspec.yaml index a853c6a1a..2bbe95775 100644 --- a/examples/example_resources/pubspec.yaml +++ b/examples/example_resources/pubspec.yaml @@ -11,12 +11,14 @@ dependencies: sdk: flutter flutter_svg: ^2.0.0 - rive: ^0.11.0 lottie: ^2.0.0 + rive: ^0.11.0 dev_dependencies: + flutter_gen_runner: + path: ../../packages/runner + build_runner: ^2.0.0 - flutter_gen_runner: ^5.8.0 flutter_gen: output: lib/gen/ diff --git a/packages/command/pubspec.yaml b/packages/command/pubspec.yaml index 8f6f0cc21..c5339a499 100644 --- a/packages/command/pubspec.yaml +++ b/packages/command/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_gen description: The Flutter code generator for your assets, fonts, colors, … — Get rid of all String-based APIs. -version: 5.8.0 +version: 5.9.0 homepage: https://github.com/FlutterGen/flutter_gen repository: https://github.com/FlutterGen/flutter_gen documentation: https://github.com/FlutterGen/flutter_gen @@ -13,7 +13,7 @@ executables: fluttergen: flutter_gen_command dependencies: - flutter_gen_core: 5.8.0 + flutter_gen_core: 5.9.0 args: ^2.0.0 dev_dependencies: diff --git a/packages/core/lib/version.gen.dart b/packages/core/lib/version.gen.dart index 92fad066f..267d0e3b6 100644 --- a/packages/core/lib/version.gen.dart +++ b/packages/core/lib/version.gen.dart @@ -1,2 +1,2 @@ /// DO NOT MODIFY BY HAND, Generated by version_gen -String packageVersion = '5.8.0'; +String packageVersion = '5.9.0'; diff --git a/packages/core/pubspec.yaml b/packages/core/pubspec.yaml index 5164cf7f3..92539d37b 100644 --- a/packages/core/pubspec.yaml +++ b/packages/core/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_gen_core description: The Flutter code generator for your assets, fonts, colors, … — Get rid of all String-based APIs. -version: 5.8.0 +version: 5.9.0 homepage: https://github.com/FlutterGen/flutter_gen repository: https://github.com/FlutterGen/flutter_gen documentation: https://github.com/FlutterGen/flutter_gen diff --git a/packages/runner/pubspec.yaml b/packages/runner/pubspec.yaml index 92d576946..1c0c02e43 100644 --- a/packages/runner/pubspec.yaml +++ b/packages/runner/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_gen_runner description: The Flutter code generator for your assets, fonts, colors, … — Get rid of all String-based APIs. -version: 5.8.0 +version: 5.9.0 homepage: https://github.com/FlutterGen/flutter_gen repository: https://github.com/FlutterGen/flutter_gen documentation: https://github.com/FlutterGen/flutter_gen @@ -10,7 +10,7 @@ environment: sdk: '>=2.17.0 <4.0.0' dependencies: - flutter_gen_core: 5.8.0 + flutter_gen_core: 5.9.0 build: ^2.0.0 collection: ^1.17.0 crypto: ^3.0.0