Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v5.0.1 #307

Merged
merged 1 commit into from Sep 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,13 @@
## 5.0.1

**Bug fix**
- [#300](https://github.com/FlutterGen/flutter_gen/pull/300) Fix `package_parameter_enabled` being ignored for Flare, Rive and Lottie.
- [#303](https://github.com/FlutterGen/flutter_gen/pull/303) Add `ignore_for_file: implicit_dynamic_list_literal` to generated files.

**Development**
- [#306](https://github.com/FlutterGen/flutter_gen/pull/306) Update required `analyzer: '>=4.7.0 <6.0.0'`


## 5.0.0

**Feature**
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Expand Up @@ -107,7 +107,7 @@ dev_dependencies:
sdk: flutter
build_runner: ^2.1.11
freezed: ^2.1.0+1
flutter_gen_runner: ^5.0.0
flutter_gen_runner: ^5.0.1

flutter_lints: ^2.0.1

Expand Down
2 changes: 1 addition & 1 deletion example_resources/pubspec.yaml
Expand Up @@ -20,7 +20,7 @@ dependencies:

dev_dependencies:
build_runner: ^2.1.11
flutter_gen_runner: ^5.0.0
flutter_gen_runner: ^5.0.1

flutter_gen:
output: lib/gen/
Expand Down
4 changes: 2 additions & 2 deletions packages/command/pubspec.yaml
@@ -1,7 +1,7 @@
name: flutter_gen

description: The Flutter code generator for your assets, fonts, colors, … — Get rid of all String-based APIs.
version: 5.0.0
version: 5.0.1
homepage: https://github.com/FlutterGen/flutter_gen
repository: https://github.com/FlutterGen/flutter_gen
documentation: https://github.com/FlutterGen/flutter_gen
Expand All @@ -14,7 +14,7 @@ executables:
fluttergen: flutter_gen_command

dependencies:
flutter_gen_core: 5.0.0
flutter_gen_core: 5.0.1
args: '>=2.0.0 <3.0.0'

dev_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion packages/core/lib/version.gen.dart
@@ -1,2 +1,2 @@
/// DO NOT MODIFY BY HAND, Generated by version_gen
String packageVersion = '5.0.0';
String packageVersion = '5.0.1';
2 changes: 1 addition & 1 deletion packages/core/pubspec.yaml
@@ -1,7 +1,7 @@
name: flutter_gen_core

description: The Flutter code generator for your assets, fonts, colors, … — Get rid of all String-based APIs.
version: 5.0.0
version: 5.0.1
homepage: https://github.com/FlutterGen/flutter_gen
repository: https://github.com/FlutterGen/flutter_gen
documentation: https://github.com/FlutterGen/flutter_gen
Expand Down
4 changes: 2 additions & 2 deletions packages/runner/pubspec.yaml
@@ -1,7 +1,7 @@
name: flutter_gen_runner

description: The Flutter code generator for your assets, fonts, colors, … — Get rid of all String-based APIs.
version: 5.0.0
version: 5.0.1
homepage: https://github.com/FlutterGen/flutter_gen
repository: https://github.com/FlutterGen/flutter_gen
documentation: https://github.com/FlutterGen/flutter_gen
Expand All @@ -11,7 +11,7 @@ environment:
sdk: '>=2.14.0 <3.0.0'

dependencies:
flutter_gen_core: 5.0.0
flutter_gen_core: 5.0.1
build: '>=2.0.0 <3.0.0'
collection: '>=1.15.0 <2.0.0'
crypto: '>=3.0.0 <4.0.0'
Expand Down