diff --git a/.gitignore b/.gitignore index 7ee60bb..06a7eb4 100644 --- a/.gitignore +++ b/.gitignore @@ -14,5 +14,9 @@ coverage/ # Generated Dart files. *.g.dart +# Exclusion for the version file generated by the build_version package, +# otherwise CLI template generation will fail. +!src/cli/lib/src/version.g.dart + # Mockito generated files. *.mocks.dart diff --git a/src/cli/CHANGELOG.md b/src/cli/CHANGELOG.md index 08735d6..d588032 100644 --- a/src/cli/CHANGELOG.md +++ b/src/cli/CHANGELOG.md @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) Prefix your items with `(Template)` if the change is about the template and not the resulting application. +## 0.20.2 +- (Template) Fixes an issue with the CLI in which the build fails during template generation because of a missing required file. + ## 0.20.1 - Fix CI/CD artifact name for Android. - Fix CI/CD to install gcloud CLI Tool.