Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(release): prepare for moving from dev release to stable release. #274

Merged
merged 1 commit into from
Apr 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 2 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 4 additions & 0 deletions packages/flutterfire_cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
Expand Down
2 changes: 1 addition & 1 deletion packages/flutterfire_cli/lib/version.g.dart
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// This file is generated. Do not manually edit.
String cliVersion = '0.3.0-dev.21';
String cliVersion = '1.0.0';
2 changes: 1 addition & 1 deletion packages/flutterfire_cli/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion packages/flutterfire_starter/hooks/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading