Skip to content

Commit a652132

Browse files
committed
Announce 1.0.0 compatibility for multiple plugins
1 parent 81d8828 commit a652132

File tree

24 files changed

+120
-8
lines changed

24 files changed

+120
-8
lines changed

packages/cloud_firestore/cloud_firestore/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.13.5+1
2+
3+
* Declare API stability and compatibility with `1.0.0` (more details at: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0).
4+
15
## 0.13.5
26

37
* Migrate cloud_firestore to android v2 embedding.

packages/cloud_firestore/cloud_firestore/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ A Flutter plugin to use the [Cloud Firestore API](https://firebase.google.com/do
66

77
For Flutter plugins for other Firebase products, see [README.md](https://github.com/FirebaseExtended/flutterfire/blob/master/README.md).
88

9+
**Please set your constraint to `cloud_firestore: '>=0.13.y+x <2.0.0'`**
10+
11+
## Backward compatible 1.0.0 version is coming
12+
The plugin has reached a stable API, we guarantee that version `1.0.0` will be backward compatible with `0.13.y+z`.
13+
Please use `cloud_firestore: '>=0.13.y+x <2.0.0'` as your dependency constraint to allow a smoother ecosystem migration.
14+
For more details see: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0
15+
916
## Setup
1017

1118
To use this plugin:

packages/cloud_firestore/cloud_firestore/pubspec.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ description:
33
Flutter plugin for Cloud Firestore, a cloud-hosted, noSQL database with
44
live synchronization and offline support on Android and iOS.
55
homepage: https://github.com/FirebaseExtended/flutterfire/tree/master/packages/cloud_firestore/cloud_firestore
6-
version: 0.13.5
6+
# 0.13.y+z is compatible with 1.0.0, if you land a breaking change bump
7+
# the version to 2.0.0.
8+
# See more details: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0
9+
version: 0.13.5+1
710

811
flutter:
912
plugin:

packages/cloud_firestore/cloud_firestore_web/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.1.1+3
2+
3+
* Declare API stability and compatibility with `1.0.0` (more details at: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0).
4+
15
## 0.1.1+2
26

37
* Ensure QueryWeb correctly encodes values passed in to `[start|end][At|Before](Document?)` methods.

packages/cloud_firestore/cloud_firestore_web/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
The web implementation of [`cloud_firestore`][1].
44

5+
**Please set your constraint to `cloud_firestore_web: '>=0.1.y+x <2.0.0'`**
6+
7+
## Backward compatible 1.0.0 version is coming
8+
The plugin has reached a stable API, we guarantee that version `1.0.0` will be backward compatible with `0.1.y+z`.
9+
Please use `cloud_firestore_web: '>=0.1.y+x <2.0.0'` as your dependency constraint to allow a smoother ecosystem migration.
10+
For more details see: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0
11+
512
## Usage
613

714
### Import the package

packages/cloud_firestore/cloud_firestore_web/pubspec.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
name: cloud_firestore_web
22
description: The web implementation of cloud_firestore
33
homepage: https://github.com/FirebaseExtended/flutterfire/tree/master/packages/cloud_firestore/cloud_firestore_web
4-
version: 0.1.1+2
4+
# 0.1.y+z is compatible with 1.0.0, if you land a breaking change bump
5+
# the version to 2.0.0.
6+
# See more details: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0
7+
version: 0.1.1+3
58

69
flutter:
710
plugin:

packages/firebase_crashlytics/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.1.3+4
2+
3+
* Declare API stability and compatibility with `1.0.0` (more details at: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0).
4+
15
## 0.1.3+3
26

37
* Fix for missing UserAgent.h compilation failures.

packages/firebase_crashlytics/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ A Flutter plugin to use the [Firebase Crashlytics Service](https://firebase.goog
66

77
For Flutter plugins for other Firebase products, see [README.md](https://github.com/FirebaseExtended/flutterfire/blob/master/README.md).
88

9+
**Please set your constraint to `firebase_crashlytics: '>=0.1.y+x <2.0.0'`**
10+
11+
## Backward compatible 1.0.0 version is coming
12+
The plugin has reached a stable API, we guarantee that version `1.0.0` will be backward compatible with `0.1.y+z`.
13+
Please use `firebase_crashlytics: '>=0.1.y+x <2.0.0'` as your dependency constraint to allow a smoother ecosystem migration.
14+
For more details see: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0
15+
916
## Usage
1017

1118
### Import the firebase_crashlytics plugin

packages/firebase_crashlytics/pubspec.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ name: firebase_crashlytics
22
description:
33
Flutter plugin for Firebase Crashlytics. It reports uncaught errors to the
44
Firebase console.
5-
version: 0.1.3+3
5+
# 0.1.y+z is compatible with 1.0.0, if you land a breaking change bump
6+
# the version to 2.0.0.
7+
# See more details: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0
8+
version: 0.1.3+4
69
homepage: https://github.com/FirebaseExtended/flutterfire/tree/master/packages/firebase_crashlytics
710

811
environment:

packages/firebase_dynamic_links/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.5.0+13
2+
3+
* Declare API stability and compatibility with `1.0.0` (more details at: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0).
4+
15
## 0.5.0+12
26

37
* Fix for missing UserAgent.h compilation failures.

packages/firebase_dynamic_links/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@ In addition, Dynamic Links work across app installs: if a user opens a Dynamic L
1010

1111
For Flutter plugins for other Firebase products, see [README.md](https://github.com/FirebaseExtended/flutterfire/blob/master/README.md).
1212

13+
**Please set your constraint to `firebase_dynamic_links: '>=0.5.y+x <2.0.0'`**
14+
15+
## Backward compatible 1.0.0 version is coming
16+
The plugin has reached a stable API, we guarantee that version `1.0.0` will be backward compatible with `0.5.y+z`.
17+
Please use `firebase_dynamic_links: '>=0.5.y+x <2.0.0'` as your dependency constraint to allow a smoother ecosystem migration.
18+
For more details see: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0
19+
1320
## Usage
1421

1522
To use this plugin, add `firebase_dynamic_links` as a [dependency in your pubspec.yaml file](https://flutter.io/platform-plugins/). You must also configure firebase dynamic links for each platform project: Android and iOS (see the example folder or https://codelabs.developers.google.com/codelabs/flutter-firebase/#4 for step by step details).

packages/firebase_dynamic_links/pubspec.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
name: firebase_dynamic_links
22
description: Flutter plugin for Google Dynamic Links for Firebase, an app solution for creating
33
and handling links across multiple platforms.
4-
version: 0.5.0+12
4+
# 0.5.y+z is compatible with 1.0.0, if you land a breaking change bump
5+
# the version to 2.0.0.
6+
# See more details: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0
7+
version: 0.5.0+13
58
homepage: https://github.com/FirebaseExtended/flutterfire/tree/master/packages/firebase_dynamic_links
69

710
dependencies:

packages/firebase_in_app_messaging/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.1.1+4
2+
3+
* Declare API stability and compatibility with `1.0.0` (more details at: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0).
4+
15
## 0.1.1+3
26

37
* Replace deprecated `getFlutterEngine` call on Android.

packages/firebase_in_app_messaging/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ A Flutter plugin to use the [Firebase In-App Messaging API](https://firebase.goo
44

55
For Flutter plugins for other Firebase products, see [README.md](https://github.com/FirebaseExtended/flutterfire/blob/master/README.md).
66

7+
**Please set your constraint to `firebase_in_app_messaging: '>=0.1.y+x <2.0.0'`**
8+
9+
## Backward compatible 1.0.0 version is coming
10+
The plugin has reached a stable API, we guarantee that version `1.0.0` will be backward compatible with `0.1.y+z`.
11+
Please use `firebase_in_app_messaging: '>=0.1.y+x <2.0.0'` as your dependency constraint to allow a smoother ecosystem migration.
12+
For more details see: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0
13+
714
## Usage
815

916
### Import the firebase_in_app_messaging plugin

packages/firebase_in_app_messaging/pubspec.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: firebase_in_app_messaging
22
description: Flutter plugin for Firebase In-App Messaging.
3-
version: 0.1.1+3
3+
# 0.1.y+z is compatible with 1.0.0, if you land a breaking change bump
4+
# the version to 2.0.0.
5+
# See more details: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0
6+
version: 0.1.1+4
47
homepage: https://github.com/FirebaseExtended/flutterfire/tree/master/packages/firebase_in_app_messaging
58

69
environment:

packages/firebase_ml_vision/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.9.3+10
2+
3+
* Declare API stability and compatibility with `1.0.0` (more details at: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0).
4+
15
## 0.9.3+9
26

37
* Fix for missing UserAgent.h compilation failures.

packages/firebase_ml_vision/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ A Flutter plugin to use the [ML Kit Vision for Firebase API](https://firebase.go
66

77
For Flutter plugins for other Firebase products, see [README.md](https://github.com/FirebaseExtended/flutterfire/blob/master/README.md).
88

9+
**Please set your constraint to `firebase_ml_vision: '>=0.9.y+x <2.0.0'`**
10+
11+
## Backward compatible 1.0.0 version is coming
12+
The plugin has reached a stable API, we guarantee that version `1.0.0` will be backward compatible with `0.9.y+z`.
13+
Please use `firebase_ml_vision: '>=0.9.y+x <2.0.0'` as your dependency constraint to allow a smoother ecosystem migration.
14+
For more details see: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0
15+
916
## Usage
1017

1118
To use this plugin, add `firebase_ml_vision` as a [dependency in your pubspec.yaml file](https://flutter.io/platform-plugins/). You must also configure Firebase for each platform project: Android and iOS (see the example folder or https://codelabs.developers.google.com/codelabs/flutter-firebase/#4 for step by step details).

packages/firebase_ml_vision/pubspec.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
name: firebase_ml_vision
22
description: Flutter plugin for Firebase machine learning vision services.
33
homepage: https://github.com/FirebaseExtended/flutterfire/tree/master/packages/firebase_ml_vision
4-
version: 0.9.3+9
4+
# 0.9.y+z is compatible with 1.0.0, if you land a breaking change bump
5+
# the version to 2.0.0.
6+
# See more details: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0
7+
version: 0.9.3+10
58

69
dependencies:
710
flutter:

packages/firebase_performance/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.3.1+9
2+
3+
* Declare API stability and compatibility with `1.0.0` (more details at: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0).
4+
15
## 0.3.1+8
26

37
* Fix for missing UserAgent.h compilation failures.

packages/firebase_performance/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ A Flutter plugin to use the [Google Performance Monitoring for Firebase API](htt
66

77
For Flutter plugins for other Firebase products, see [README.md](https://github.com/FirebaseExtended/flutterfire/blob/master/README.md).
88

9+
**Please set your constraint to `firebase_performance: '>=0.3.y+x <2.0.0'`**
10+
11+
## Backward compatible 1.0.0 version is coming
12+
The plugin has reached a stable API, we guarantee that version `1.0.0` will be backward compatible with `0.3.y+z`.
13+
Please use `firebase_performance: '>=0.3.y+x <2.0.0'` as your dependency constraint to allow a smoother ecosystem migration.
14+
For more details see: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0
15+
916
## Usage
1017

1118
To use this plugin, add `firebase_performance` as a [dependency in your pubspec.yaml file](https://flutter.io/platform-plugins/). You must also configure firebase performance monitoring for each platform project: Android and iOS (see the example folder or https://codelabs.developers.google.com/codelabs/flutter-firebase/#4 for step by step details).

packages/firebase_performance/pubspec.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ description: Flutter plugin for Google Performance Monitoring for Firebase, an a
33
measurement solution that monitors traces and HTTP/S network requests on Android and
44
iOS.
55
homepage: https://github.com/FirebaseExtended/flutterfire/tree/master/packages/firebase_performance
6-
version: 0.3.1+8
6+
# 0.3.y+z is compatible with 1.0.0, if you land a breaking change bump
7+
# the version to 2.0.0.
8+
# See more details: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0
9+
version: 0.3.1+9
710

811
dependencies:
912
flutter:

packages/firebase_remote_config/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.3.0+5
2+
3+
* Declare API stability and compatibility with `1.0.0` (more details at: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0).
4+
15
## 0.3.0+4
26

37
* Fix for missing UserAgent.h compilation failures.

packages/firebase_remote_config/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ A Flutter plugin to use the [Firebase Remote Config API](https://firebase.google
66

77
For Flutter plugins for other Firebase products, see [README.md](https://github.com/FirebaseExtended/flutterfire/blob/master/README.md).
88

9+
**Please set your constraint to `firebase_remote_config: '>=0.3.y+x <2.0.0'`**
10+
11+
## Backward compatible 1.0.0 version is coming
12+
The plugin has reached a stable API, we guarantee that version `1.0.0` will be backward compatible with `0.3.y+z`.
13+
Please use `firebase_remote_config: '>=0.3.y+x <2.0.0'` as your dependency constraint to allow a smoother ecosystem migration.
14+
For more details see: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0
15+
916
## Usage
1017

1118
### Import the firebase_remote_config plugin

packages/firebase_remote_config/pubspec.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ name: firebase_remote_config
22
description: Flutter plugin for Firebase Remote Config. Update your application look and feel and behaviour without
33
re-releasing.
44
homepage: https://github.com/FirebaseExtended/flutterfire/tree/master/packages/firebase_remote_config
5-
version: 0.3.0+4
5+
# 0.3.y+z is compatible with 1.0.0, if you land a breaking change bump
6+
# the version to 2.0.0.
7+
# See more details: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0
8+
version: 0.3.0+5
69

710
dependencies:
811
flutter:

0 commit comments

Comments
 (0)