diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f9de264..1266ebdb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,27 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 2024-04-10 + +### Changes + +--- + +Packages with breaking changes: + + - There are no breaking changes in this release. + +Packages with other changes: + + - [`flutterfire_cli` - `v1.0.0`](#flutterfire_cli---v100) + +--- + +#### `flutterfire_cli` - `v1.0.0` + + - Moved flutterfire_cli package from dev release to general release. + + ## 2024-03-26 ### Changes diff --git a/README.md b/README.md index 7d63cdf1..32a6ad51 100644 --- a/README.md +++ b/README.md @@ -33,23 +33,17 @@ flutterfire --help ## Install -The general release is available for installation by running the following command: +To install, run the following command: ```bash dart pub global activate flutterfire_cli ``` -We recommend installing the dev version which has been in use for some time, has become fairly stable and will soon be part of the general release: - -```bash -dart pub global activate flutterfire_cli 0.3.0-dev.21 --overwrite -``` - - FlutterFire CLI requires the Firebase CLI (`firebase-tools`) to be installed on your local machine, [follow these instructions](https://firebase.google.com/docs/cli) for installation. - If you're running on a windows machine, we highly recommend you install via npm (i.e. `npm install -g firebase-tools`). The standalone `firebase-tools` version can cause problems which you can read about [here](https://github.com/invertase/flutterfire_cli/issues/55#issuecomment-1316201478). -## Documentation for `v0.3.0-dev.21` +## Documentation for `v1.0.0` ### Default setup diff --git a/packages/flutterfire_cli/CHANGELOG.md b/packages/flutterfire_cli/CHANGELOG.md index 5cfed9b8..878818d7 100644 --- a/packages/flutterfire_cli/CHANGELOG.md +++ b/packages/flutterfire_cli/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.0 + + - Moved flutterfire_cli package from dev release to general release. + ## 0.3.0-dev.21 - **FIX**(android): ensure app/build.gradle only writes google services dependency once ([#269](https://github.com/invertase/flutterfire_cli/issues/269)). ([f195b16f](https://github.com/invertase/flutterfire_cli/commit/f195b16f0a3131288d4fccf3e1140093a2d68708)) diff --git a/packages/flutterfire_cli/lib/version.g.dart b/packages/flutterfire_cli/lib/version.g.dart index ab40b58b..4b1afbfb 100644 --- a/packages/flutterfire_cli/lib/version.g.dart +++ b/packages/flutterfire_cli/lib/version.g.dart @@ -1,2 +1,2 @@ // This file is generated. Do not manually edit. -String cliVersion = '0.3.0-dev.21'; +String cliVersion = '1.0.0'; diff --git a/packages/flutterfire_cli/pubspec.yaml b/packages/flutterfire_cli/pubspec.yaml index 28f7d975..fc04adb3 100644 --- a/packages/flutterfire_cli/pubspec.yaml +++ b/packages/flutterfire_cli/pubspec.yaml @@ -1,6 +1,6 @@ name: flutterfire_cli description: FlutterFire CLI for configuring Firebase on your application. -version: 0.3.0-dev.21 +version: 1.0.0 homepage: "https://github.com/invertase/flutterfire_cli" environment: diff --git a/packages/flutterfire_starter/hooks/pubspec.yaml b/packages/flutterfire_starter/hooks/pubspec.yaml index 19fdf221..c52d24e2 100644 --- a/packages/flutterfire_starter/hooks/pubspec.yaml +++ b/packages/flutterfire_starter/hooks/pubspec.yaml @@ -4,5 +4,5 @@ environment: sdk: ">=2.12.0 <3.0.0" dependencies: - flutterfire_cli: ^0.3.0-dev.21 + flutterfire_cli: ^1.0.0 mason: ^0.1.0-dev.40