Skip to content

Commit d32c78b

Browse files
AlexV525claude
andauthored
πŸ”– 5.15.0 (#773)
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 17ccc31 commit d32c78b

7 files changed

Lines changed: 24 additions & 8 deletions

File tree

β€Ž.github/workflows/publish.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Publish to pub.dev
33
on:
44
push:
55
tags:
6-
- 'v\d+\.\d+\.\d+(\+\d+)?'
6+
- 'v[0-9]+.[0-9]+.[0-9]+*'
77
workflow_dispatch:
88

99
jobs:

β€Ž.github/workflows/release.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release
33
on:
44
push:
55
tags:
6-
- 'v*.*.*'
6+
- 'v[0-9]+.[0-9]+.[0-9]+*'
77
workflow_dispatch:
88

99
permissions: {}

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## 5.15.0
2+
3+
**Feature**
4+
5+
- [#755](https://github.com/FlutterGen/flutter_gen/pull/755) Use `abstract final` class modifier for generated classes. by [@RahmiTufanoglu](https://github.com/RahmiTufanoglu)
6+
7+
**Fix**
8+
9+
- [#764](https://github.com/FlutterGen/flutter_gen/pull/764) Add `xml 7.x` support by widening `flutter_gen_core`'s `xml` constraint to `>=6.0.0 <8.0.0`. by [@Akhrameev](https://github.com/Akhrameev)
10+
11+
**Development**
12+
13+
- [#757](https://github.com/FlutterGen/flutter_gen/pull/757) Scope `GITHUB_TOKEN` to least privilege in the release workflow.
14+
- Fix tag glob in the `Release` / `Publish` workflows so pushing a `vMAJOR.MINOR.PATCH[+build|-pre]` tag actually triggers them (previous `publish.yml` used regex syntax that GitHub Actions filter globs never matched).
15+
- Bump CI toolchain: Flutter `3.44.4`, Node.js `24.18.0`, pnpm `11.9.0`, `lint-staged` `v17`.
16+
117
## 5.14.1
218

319
**Development**

β€Ž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.14.1
3+
version: 5.15.0
44
homepage: https://github.com/FlutterGen/flutter_gen
55
repository: https://github.com/FlutterGen/flutter_gen/tree/main/packages/command
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.14.1
16+
flutter_gen_core: 5.15.0
1717

1818
args: ^2.0.0
1919
glob: ^2.1.3
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.14.1';
2+
String packageVersion = '5.15.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.14.1
3+
version: 5.15.0
44
homepage: https://github.com/FlutterGen/flutter_gen
55
repository: https://github.com/FlutterGen/flutter_gen/tree/main/packages/core
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.14.1
3+
version: 5.15.0
44
homepage: https://github.com/FlutterGen/flutter_gen
55
repository: https://github.com/FlutterGen/flutter_gen/tree/main/packages/runner
66
documentation: https://github.com/FlutterGen/flutter_gen
@@ -10,7 +10,7 @@ environment:
1010
sdk: ^3.4.0
1111

1212
dependencies:
13-
flutter_gen_core: 5.14.1
13+
flutter_gen_core: 5.15.0
1414
build: ^4.0.0
1515
build_config: ^1.1.2
1616
collection: ^1.17.0

0 commit comments

Comments
Β (0)