Skip to content

Commit

Permalink
Update CHANGELOG and bump version
Browse files Browse the repository at this point in the history
Prepare for a release.

Change-Id: Ibe6b3db6c9069aba313590da272c5de219c48911
  • Loading branch information
cpetrov authored and Christian Petrov committed Jan 30, 2018
1 parent 69105b0 commit 855b367
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Change Log
==========

## Version 4.0.0

* 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.
* Support customizing the marker appearance by applying a custom image.

## Version 3.0.0

* Migrate tabris-plugin-maps to Tabris.js 2 API (breaks compatibility with Tabris.js 1.x)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ The Tabris.js website provides detailed information on how to [integrate custom
The plugin should be added as an entry in the apps `config.xml` file:

```xml
<plugin name="tabris-plugin-maps" spec="3.0.0" />
<plugin name="tabris-plugin-maps" spec="^4.0.0" />
```

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

```xml
<plugin name="tabris-plugin-maps" spec="3.0.0">
<plugin name="tabris-plugin-maps" spec="^4.0.0">
<variable name="ANDROID_API_KEY" value="$ANDROID_API_KEY" />
</plugin>
```
Expand Down
2 changes: 1 addition & 1 deletion example/cordova/config.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version='1.0' encoding='utf-8'?>
<widget xmlns="http://www.w3.org/ns/widgets"
id="com.eclipsesource.tabris.maps.example"
version="3.0.0"
version="4.0.0"
android-packageName="com.eclipsesource.tabris.maps.example"
android-versionCode="2">
<name>Tabris.js Maps Plugin Example</name>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tabris-plugin-maps",
"version": "3.0.0",
"version": "4.0.0",
"description": "A maps widget for Tabris.js",
"cordova": {
"id": "tabris-plugin-maps",
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="tabris-plugin-maps"
version="3.0.0">
version="4.0.0">

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

0 comments on commit 855b367

Please sign in to comment.