Skip to content

Commit

Permalink
Release v4.3.0 (#265)
Browse files Browse the repository at this point in the history
* feat: add keyName to asset generator

* chore: bump up to 4.3.0
  • Loading branch information
wasabeef authored Jun 9, 2022
1 parent 5b3177d commit 62759d6
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 8 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 4.3.0

**Feature**
- [#264](https://github.com/FlutterGen/flutter_gen/pull/264) Add `keyName` to asset generate file.

**Bug fix**
- [#247](https://github.com/FlutterGen/flutter_gen/pull/247) Make the default scale value null, so Flutter decides the one to use.

## 4.2.1, 4.2.1+1

**Bug fix**
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ dev_dependencies:
integration_test:
sdk: flutter
build_runner: ^2.1.11
flutter_gen_runner: ^4.2.1
flutter_gen_runner: ^4.3.0

flutter_lints: ^2.0.1

Expand Down
2 changes: 1 addition & 1 deletion example_resources/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies:

dev_dependencies:
build_runner: ^2.1.11
flutter_gen_runner: ^4.2.1
flutter_gen_runner: ^4.3.0

flutter_gen:
output: lib/gen/
Expand Down
4 changes: 2 additions & 2 deletions packages/command/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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: 4.2.1+1
version: 4.3.0
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: 4.2.1+1
flutter_gen_core: 4.3.0
args: '>=2.0.0 <3.0.0'

dev_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion packages/core/lib/version.gen.dart
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
/// DO NOT MODIFY BY HAND, Generated by version_gen
String packageVersion = '4.2.1+1';
String packageVersion = '4.3.0';
2 changes: 1 addition & 1 deletion packages/core/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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: 4.2.1+1
version: 4.3.0
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
Original file line number Diff line number Diff line change
@@ -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: 4.2.1+1
version: 4.3.0
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: 4.2.1+1
flutter_gen_core: 4.3.0
build: '>=2.0.0 <3.0.0'
collection: '>=1.15.0 <2.0.0'
crypto: '>=3.0.0 <4.0.0'
Expand Down

0 comments on commit 62759d6

Please sign in to comment.