From b8ef17201bd25993dd74a34c141fa657467689cf Mon Sep 17 00:00:00 2001 From: Leo Farias Date: Tue, 3 Oct 2023 19:57:56 -0400 Subject: [PATCH] Version bump --- CHANGELOG.md | 2 +- lib/src/version.g.dart | 2 +- pubspec.yaml | 2 +- tool/grind.dart | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 846eeeff..cc188876 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 3.0.0-beta.4 +## 3.0.0-beta.5 ### Added diff --git a/lib/src/version.g.dart b/lib/src/version.g.dart index 74e03c41..9e334e93 100644 --- a/lib/src/version.g.dart +++ b/lib/src/version.g.dart @@ -1,3 +1,3 @@ // GENERATED CODE - DO NOT MODIFY BY HAND -const packageVersion = '3.0.0-beta.4'; +const packageVersion = '3.0.0-beta.5'; diff --git a/pubspec.yaml b/pubspec.yaml index 8a7b482e..138979ae 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: 3.0.0-beta.4 +version: 3.0.0-beta.5 homepage: https://github.com/leoafarias/fvm environment: diff --git a/tool/grind.dart b/tool/grind.dart index df635858..09498e22 100644 --- a/tool/grind.dart +++ b/tool/grind.dart @@ -55,7 +55,7 @@ Future buildVersion() async { // Add comment on top of the const that this file is generated by this command String fileContent = '// GENERATED CODE - DO NOT MODIFY BY HAND\n\n'; - fileContent += "const packageVersion = '$version';"; + fileContent += "const packageVersion = '$version';\n"; versionFile.writeAsStringSync(fileContent);