Skip to content

Commit 855b367

Browse files
cpetrovChristian Petrov
authored and
Christian Petrov
committed
Update CHANGELOG and bump version
Prepare for a release. Change-Id: Ibe6b3db6c9069aba313590da272c5de219c48911
1 parent 69105b0 commit 855b367

File tree

5 files changed

+10
-5
lines changed

5 files changed

+10
-5
lines changed

CHANGELOG.md

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

4+
## Version 4.0.0
5+
6+
* Update tabris-plugin-maps to Tabris.js 2.2 custom widget API. This version is not compatible with Tabris.js 2.0 and 2.1 anymore.
7+
* Support customizing the marker appearance by applying a custom image.
8+
49
## Version 3.0.0
510

611
* Migrate tabris-plugin-maps to Tabris.js 2 API (breaks compatibility with Tabris.js 1.x)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The Tabris.js website provides detailed information on how to [integrate custom
2727
The plugin should be added as an entry in the apps `config.xml` file:
2828

2929
```xml
30-
<plugin name="tabris-plugin-maps" spec="3.0.0" />
30+
<plugin name="tabris-plugin-maps" spec="^4.0.0" />
3131
```
3232

3333
To fetch the latest development version use the GitHub url:
@@ -43,7 +43,7 @@ On Android a Google Maps API key has to be provided when adding the plugin to yo
4343
The API key can be configured inside your app's `config.xml`:
4444

4545
```xml
46-
<plugin name="tabris-plugin-maps" spec="3.0.0">
46+
<plugin name="tabris-plugin-maps" spec="^4.0.0">
4747
<variable name="ANDROID_API_KEY" value="$ANDROID_API_KEY" />
4848
</plugin>
4949
```

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.maps.example"
4-
version="3.0.0"
4+
version="4.0.0"
55
android-packageName="com.eclipsesource.tabris.maps.example"
66
android-versionCode="2">
77
<name>Tabris.js Maps Plugin Example</name>

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-maps",
3-
"version": "3.0.0",
3+
"version": "4.0.0",
44
"description": "A maps widget for Tabris.js",
55
"cordova": {
66
"id": "tabris-plugin-maps",

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-maps"
5-
version="3.0.0">
5+
version="4.0.0">
66

77
<name>Tabris.js Maps Plugin</name>
88
<description>A maps widget for Tabris.js. It is based on Google Maps on Android and MapKit on iOS.</description>

0 commit comments

Comments
 (0)