Skip to content

Commit 6fd138c

Browse files
committed
prepare release
prepare release, update package.json and plugin.xml
1 parent 762f3e5 commit 6fd138c

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
## 4.2.1 - 2016-07-25
2-
- Fix issue with queuing getting stuck when device disconnects / closes
1+
## 4.3.0 - 2016-09-21
2+
- Fix issue with queuing getting stuck when device disconnects / closes [\#315](https://github.com/randdusing/cordova-plugin-bluetoothle/pull/315)
3+
- Add ability to force rediscover via clearCache parameter (Android) [\#340](https://github.com/randdusing/cordova-plugin-bluetoothle/pull/340)
4+
- UUIDs are now always uppercase [\#337](https://github.com/randdusing/BluetoothLE/issues/337)
5+
- Fix issue with discoveredState being null on connect error, which caused NullPointerExceptions [\#342](https://github.com/randdusing/BluetoothLE/issues/342)
6+
- Add ability to auto connect via autoConnect parameter (Android) [\#333](https://github.com/randdusing/BluetoothLE/issues/333)
7+
- Update package.json engines [\#348](https://github.com/randdusing/cordova-plugin-bluetoothle/pull/348)
38

49
## 4.2.0 - 2016-07-09
510
- Added ability to bond/unbond on Android

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cordova-plugin-bluetoothle",
3-
"version": "4.2.1",
3+
"version": "4.3.0",
44
"description": "Use the Bluetooth Low Energy plugin to connect your Cordova app to new Bluetooth devices like heart rate monitors, thermometers, etc...",
55
"cordova": {
66
"id": "cordova-plugin-bluetoothle",
@@ -27,7 +27,7 @@
2727
],
2828
"engines": {
2929
"cordovaDependencies": {
30-
"4.2.0": {
30+
"4.3.0": {
3131
"cordova": ">=5.0.0",
3232
"cordova-android": ">=5.0.0"
3333
},

plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:m2="http://schemas.microsoft.com/appx/2013/manifest" id="cordova-plugin-bluetoothle" version="4.2.1">
2+
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:m2="http://schemas.microsoft.com/appx/2013/manifest" id="cordova-plugin-bluetoothle" version="4.3.0">
33
<engines>
44
<engine name="cordova-plugman" version=">=5.0.0" />
55
<engine name="cordova-android" version=">=5.0.0" />

0 commit comments

Comments
 (0)