Skip to content

Commit

Permalink
Release v3.1.0 (#101)
Browse files Browse the repository at this point in the history
* chore(tools): add fvm

* chore(release): release v3.1.0

* chore(ci): add setup task

* chore(ci): add setup task

* chore(ci): update env

* chore(ci): update env

* chore(ci): update env

* chore(ci): update env

* chore(ci): update env

* chore(ci): update env

* chore(ci): update env
  • Loading branch information
wasabeef authored Apr 8, 2021
1 parent bf69ade commit cd9f870
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 12 deletions.
3 changes: 3 additions & 0 deletions .fvm/fvm_config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"flutterSdkVersion": "2.0.3"
}
7 changes: 4 additions & 3 deletions .github/workflows/dart-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ ubuntu-latest, windows-latest, macos-latest ]
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v1
Expand All @@ -22,8 +22,9 @@ jobs:
- name: Set environment
run: echo "$HOME/.pub-cache/bin" >> $GITHUB_PATH

- name: Get dart dependencies.
run: make dependencies
- name: Get Dart and Flutter dependencies
run: |
make dependencies
- name: Run tests for our dart project.
run: |
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,9 @@ node_modules/
# **/*.g.dart
# **/*.gen.dart

# FVM
.fvm/flutter_sdk

## Test coverage
coverage/
coverage.lcov
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 3.1.0

New Feature
- [#98](https://github.com/FlutterGen/flutter_gen/pull/98) Support for adding assets from a package


## 3.0.0, 3.0.1, 3.0.2

- Support Null Safety
Expand Down
4 changes: 2 additions & 2 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -222,14 +222,14 @@ packages:
name: flutter_gen_core
url: "https://pub.dartlang.org"
source: hosted
version: "3.0.2"
version: "3.1.0"
flutter_gen_runner:
dependency: "direct dev"
description:
path: "../packages/runner"
relative: true
source: path
version: "3.0.2"
version: "3.1.0"
flutter_svg:
dependency: "direct main"
description:
Expand Down
2 changes: 1 addition & 1 deletion packages/command/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ packages:
path: "../core"
relative: true
source: path
version: "3.0.2"
version: "3.1.0"
glob:
dependency: transitive
description:
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: 3.0.2
version: 3.1.0
homepage: https://github.com/FlutterGen/flutter_gen
repository: https://github.com/FlutterGen/flutter_gen
documentation: https://github.com/FlutterGen/flutter_gen
Expand All @@ -17,7 +17,7 @@ executables:
fluttergen: flutter_gen_command

dependencies:
flutter_gen_core: ^3.0.2
flutter_gen_core: ^3.1.0
args: '>=2.0.0 <3.0.0'

dev_dependencies:
Expand Down
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: 3.0.2
version: 3.1.0
homepage: https://github.com/FlutterGen/flutter_gen
repository: https://github.com/FlutterGen/flutter_gen
documentation: https://github.com/FlutterGen/flutter_gen
Expand Down
2 changes: 1 addition & 1 deletion packages/runner/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ packages:
path: "../core"
relative: true
source: path
version: "3.0.2"
version: "3.1.0"
glob:
dependency: transitive
description:
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: 3.0.2
version: 3.1.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 @@ environment:
sdk: '>=2.12.0 <3.0.0'

dependencies:
flutter_gen_core: ^3.0.2
flutter_gen_core: ^3.1.0
build: '>=1.6.0 <3.0.0'

dev_dependencies:
Expand Down

0 comments on commit cd9f870

Please sign in to comment.