Skip to content

Commit e3cd228

Browse files
cpetrovChristian Petrov
authored andcommitted
Update CHANGELOG and bump version to 2.0.0
Prepare for a release. Change-Id: Iaa7dd37693c94feb5b19ab96cafa5852e300be67
1 parent 986ea6f commit e3cd228

File tree

6 files changed

+16
-5
lines changed

6 files changed

+16
-5
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
Change Log
22
==========
33

4+
## Version 2.0.0
5+
6+
* Make plugin compatible with Tabris.js 2.2.0+.
7+
* Fix a crash on iOS when GoogleService-Info.plist is missing.
8+
* Fix permissions declaration in AndroidManifest.xml.
9+
* Update the Firebase Analytics framework.
10+
* Fix an issue on Android, which may cause messages to be delivered twice.
11+
* The iOS plugin now inserts the required `aps-environment` entitlement.
12+
* Fix an issue on iOS causing no notification banners to be shown.
13+
* Fix an issue on iOS causing no notifications to be received when the app is not running.
14+
415
## Version 1.0.1
516

617
* Use ES5 in the JavaScript part of the plugin to make it compatible with iOS 9.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The Tabris.js website provides detailed information on how to [integrate custom
1313
The plugin should be added as an entry in the apps `config.xml` file:
1414

1515
```xml
16-
<plugin name="tabris-plugin-firebase" spec="^1.0.0" />
16+
<plugin name="tabris-plugin-firebase" spec="^2.0.0" />
1717
```
1818

1919
To fetch the latest development version use the GitHub url:

doc/cloud-messaging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ An Android [notification icon](https://developer.android.com/guide/practices/ui_
4444
The icon can be configured inside your apps `config.xml`:
4545

4646
```xml
47-
<plugin name="tabris-plugin-firebase" spec="^1.0.0">
47+
<plugin name="tabris-plugin-firebase" spec="^2.0.0">
4848
<variable name="ANDROID_NOTIFICATION_ICON" value="@drawable/ic_notification" />
4949
</plugin>
5050
```

example/cordova/config.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version='1.0' encoding='utf-8'?>
22
<widget xmlns="http://www.w3.org/ns/widgets"
33
id="com.eclipsesource.tabris.firebase.example"
4-
version="1.0.0">
4+
version="2.0.0">
55
<name>Tabris.js Firebase Plugin Example</name>
66
<description>Examples for the Tabris.js firebase plugin.</description>
77
<author email="tabris@eclipsesource.com" href="https://tabrisjs.com">EclipseSource</author>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tabris-plugin-firebase",
3-
"version": "1.0.1",
3+
"version": "2.0.0",
44
"description": "A firebase plugin for Tabris.js",
55
"cordova": {
66
"id": "tabris-plugin-firebase",

plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
33
xmlns:android="http://schemas.android.com/apk/res/android"
44
id="tabris-plugin-firebase"
5-
version="1.0.1">
5+
version="2.0.0">
66

77
<name>Tabris.js Firebase Plugin</name>
88
<description>A firebase for Tabris.js. The plugin allows to handle cloud messages.</description>

0 commit comments

Comments
 (0)