From b2717904a7adf27166df5b36a893e34b2eba66eb Mon Sep 17 00:00:00 2001 From: leoafarias Date: Tue, 30 Nov 2021 12:58:48 -0500 Subject: [PATCH] Version bump --- .gitignore | 1 + CHANGELOG.md | 4 ++-- README.md | 3 +-- lib/src/version.dart | 2 +- pubspec.yaml | 2 +- test/support_assets/flutter_app/lib/src/version.dart | 2 ++ 6 files changed, 8 insertions(+), 6 deletions(-) create mode 100644 test/support_assets/flutter_app/lib/src/version.dart diff --git a/.gitignore b/.gitignore index d127063a..ed22c4da 100644 --- a/.gitignore +++ b/.gitignore @@ -37,3 +37,4 @@ packages/cli/.env .env node_modules test/.test_cov.dart +test/support_assets/dart_package/lib/src/version.dart diff --git a/CHANGELOG.md b/CHANGELOG.md index 4302abab..790f76aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,9 @@ -## NEXT +## 2.2.5-dev.1 - Clean dart command output stdout [#361](https://github.com/leoafarias/fvm/issues/361) - Better experience when running `dart pub cache repair` [#352](https://github.com/leoafarias/fvm/issues/352) - Dart proxy points to correct path when version is older than 1.20.0 [#348](https://github.com/leoafarias/fvm/issues/348) -- Favors equence of command cause Null check exception [#358](https://github.com/leoafarias/fvm/issues/358) +- Flavors sequence of command causes null check exception [#358](https://github.com/leoafarias/fvm/issues/358) ## 2.2.4 diff --git a/README.md b/README.md index df24d5f1..d02de60f 100644 --- a/README.md +++ b/README.md @@ -53,8 +53,7 @@ pub run test_cov ## Troubleshooting -1. On Windows make sure you are running as an administrator -2. If you get errors with messages `invalid kernel binary` or `invalid sdk hash` it means you activated `fvm` using `flutter pub global activate fvm`. Only activate `fvm` using `pub global activate fvm`. If you get `Command 'pub' not found`, then make sure to append `export PATH="$PATH:/usr/lib/dart/bin"` to your `~/.bashrc` (gets reiniated each time you open a bash shell) or `~/.profile` (only read at login) file. +Please view our [FAQ](https://fvm.app/docs/guides/faq) ## License diff --git a/lib/src/version.dart b/lib/src/version.dart index d93679e2..e4f97924 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -1,2 +1,2 @@ // Generated code. Do not modify. -const packageVersion = '2.2.4'; +const packageVersion = '2.2.5-dev.1'; diff --git a/pubspec.yaml b/pubspec.yaml index 7a963fe9..04ba197e 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: fvm description: A simple cli to manage Flutter SDK versions per project. Support channels, releases, and local cache for fast switching between versions. -version: 2.2.4 +version: 2.2.5-dev.1 homepage: https://github.com/leoafarias/fvm environment: diff --git a/test/support_assets/flutter_app/lib/src/version.dart b/test/support_assets/flutter_app/lib/src/version.dart new file mode 100644 index 00000000..e4f97924 --- /dev/null +++ b/test/support_assets/flutter_app/lib/src/version.dart @@ -0,0 +1,2 @@ +// Generated code. Do not modify. +const packageVersion = '2.2.5-dev.1';