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: I084762cbc0ab871e54f76ce1bae94f795e526e71
  • Loading branch information
cpetrov authored and Christian Petrov committed May 23, 2018
1 parent 8beb8fa commit a6d4a8d
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 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 5.0.0

* Make plugin compatible with Tabris.js 2.4 and 2.5.
* Update used Play Services version to 12.0.1.

## Version 4.0.1

* Fix marker image scaling on Android.
Expand Down
6 changes: 3 additions & 3 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="^4.0.0" />
<plugin name="tabris-plugin-maps" spec="^5.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="^4.0.0">
<plugin name="tabris-plugin-maps" spec="^5.0.0">
<variable name="ANDROID_API_KEY" value="$ANDROID_API_KEY" />
</plugin>
```
Expand Down Expand Up @@ -237,7 +237,7 @@ A `Marker` is used to indicate places and positions on the Map.

## Compatibility

Compatible with [Tabris.js 2.4.0](https://github.com/eclipsesource/tabris-js/releases/tag/v2.4.0)
Compatible with [Tabris.js](https://www.npmjs.com/package/tabris) 2.4 and 2.5.

## Development of the widget

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="4.0.1"
version="5.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 example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"description": "Example for the Tabris maps custom widget.",
"main": "src/app.js",
"dependencies": {
"tabris": "~2.4.0"
"tabris": "~2.5.0"
}
}
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": "4.0.1",
"version": "5.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="4.0.1">
version="5.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 a6d4a8d

Please sign in to comment.