Skip to content

Commit

Permalink
release version 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tsubik committed May 14, 2017
1 parent 51998f4 commit 43f508f
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# ChangeLog

## Version 0.7.0 - 14.05.2017

- Adding/removing geofences now throw errors correctly
- Error codes [Details](https://github.com/cowbell/cordova-plugin-geofence#error-codes)
- Fix android 6.0 crashes when user denied location permissions [Details](https://github.com/cowbell/cordova-plugin-geofence/issues/196)
- Fix notification overrides (android) [Details](https://github.com/cowbell/cordova-plugin-geofence/issues/195)
- Fix occasional crashes when adding geofences (android) [Details](https://github.com/cowbell/cordova-plugin-geofence/issues/196)
- Support for NSLocationAlwaysUsageDescription and NSLocationWhenInUseUsageDescription (iOS) [Details](https://github.com/cowbell/cordova
- Support for Swift 2.3, XCode 8.0-8.2
- Swift support handling delegated to [respective plugin](https://github.com/akofman/cordova-plugin-add-swift-support)-plugin-geofence/pull/194)

## Version 0.6.0 - 15.04.2016

- Support for Android 6 new permission acquiring model
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": "cordova-plugin-geofence",
"version": "0.6.0",
"version": "0.7.0",
"description": "Cordova geofence plugin",
"cordova": {
"id": "cordova-plugin-geofence",
Expand Down
4 changes: 2 additions & 2 deletions plugin.xml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<?xml version="1.0" encoding="UTF-8" ?>

<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0" xmlns:m2="http://schemas.microsoft.com/appx/2013/manifest" xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-geofence" version="0.6.0">
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0" xmlns:m2="http://schemas.microsoft.com/appx/2013/manifest" xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-geofence" version="0.7.0">
<name>geofence</name>
<description>Geofence plugin</description>
<license>Apache 2.0</license>
<keywords>phonegap,background geolocation, geofence</keywords>
<repo>https://github.com/cowbell/cordova-plugin-geofence.git</repo>
<issue>https://github.com/cowbell/cordova-plugin-geofence/issues</issue>
<engines>
<engine name="cordova" version=">=3.0.0" />
<engine name="cordova" version=">=5.0.0" />
</engines>

<js-module src="www/TransitionType.js" name="TransitionType">
Expand Down
2 changes: 1 addition & 1 deletion tests/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-geofence-test" version="0.6.0">
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" id="cordova-plugin-geofence-test" version="0.7.0">
<name>Geofence plugin Tests</name>
<license>Apache 2.0</license>

Expand Down

0 comments on commit 43f508f

Please sign in to comment.