Skip to content

Commit 47aee02

Browse files
committed
Bump version to 0.7.0
1 parent 8a6c7e9 commit 47aee02

File tree

2 files changed

+44
-40
lines changed

2 files changed

+44
-40
lines changed

CHANGELOG.md

Lines changed: 43 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,26 @@
1+
## 0.7.0
2+
* Support v2 android embedding.
3+
* Various bug and documentation fixes.
4+
15
## 0.6.3+1
2-
* Fix compilation issue with iOS
3-
* Bump protobuf version to 1.0.0
6+
* Fix compilation issue with iOS.
7+
* Bump protobuf version to 1.0.0.
48

59
## 0.6.3
6-
* Update project files for Android and iOS
7-
* Remove dependency on protoc for iOS
10+
* Update project files for Android and iOS.
11+
* Remove dependency on protoc for iOS.
812

913
## 0.6.2
10-
* Add `mtu` and `requestMtu` to BluetoothDevice
14+
* Add `mtu` and `requestMtu` to BluetoothDevice.
1115

1216
## 0.6.0+4
1317
* Fix duplicate characteristic notifications when connection lost.
1418
* Fix duplicate characteristic notifications when reconnecting.
1519
* Add minimum SDK version of 18 for the plugin.
16-
* Documentation updates
20+
* Documentation updates.
1721

1822
## 0.6.0
19-
* **Breaking change**. API refactoring with RxDart (see example)
23+
* **Breaking change**. API refactoring with RxDart (see example).
2024
* Log a more detailed warning at build time about the previous AndroidX migration.
2125
* Ensure that all channel calls to the Dart side from the Java side are done on the UI thread.
2226
This change allows Transactions to work with upcoming Engine restrictions, which require
@@ -31,14 +35,14 @@
3135
using the original support library.
3236

3337
## 0.4.2+1
34-
* Upgrade Android Gradle plugin to 3.3.0
35-
* Refresh iOS build files
38+
* Upgrade Android Gradle plugin to 3.3.0.
39+
* Refresh iOS build files.
3640

3741
## 0.4.2
38-
* Set the verbosity of log messages with `setLogLevel`
39-
* Updated iOS and Android project files
40-
* `autoConnect` now configurable for Android
41-
* Various bug fixes
42+
* Set the verbosity of log messages with `setLogLevel`.
43+
* Updated iOS and Android project files.
44+
* `autoConnect` now configurable for Android.
45+
* Various bug fixes.
4246

4347
## 0.4.1
4448
* Fixed bug where setNotifyValue wasn't properly awaitable.
@@ -52,28 +56,28 @@
5256
* Various other bug fixes.
5357

5458
## 0.3.4
55-
* Updated to use the latest protobuf (^0.9.0+1)
56-
* Updated other dependencies
59+
* Updated to use the latest protobuf (^0.9.0+1).
60+
* Updated other dependencies.
5761

5862
## 0.3.3
59-
* `scan` `withServices` to filter by service UUID's (iOS)
60-
* Error handled when trying to scan with adapter off (Android)
63+
* `scan` `withServices` to filter by service UUID's (iOS).
64+
* Error handled when trying to scan with adapter off (Android).
6165

6266
## 0.3.2
63-
* Runtime permissions for Android
64-
* `scan` `withServices` to filter by service UUID's (Android)
65-
* Scan mode can be specified (Android)
66-
* Now targets the latest android SDK
67-
* Dart 2 compatibility
67+
* Runtime permissions for Android.
68+
* `scan` `withServices` to filter by service UUID's (Android).
69+
* Scan mode can be specified (Android).
70+
* Now targets the latest android SDK.
71+
* Dart 2 compatibility.
6872

6973
## 0.3.1
70-
* Now allows simultaneous notifications of characteristics
71-
* Fixed bug on iOS that was returning `discoverServices` too early
74+
* Now allows simultaneous notifications of characteristics.
75+
* Fixed bug on iOS that was returning `discoverServices` too early.
7276

7377
## 0.3.0
74-
* iOS support added
75-
* Bug fixed in example causing discoverServices to be called multiple times
76-
* Various other bug fixes
78+
* iOS support added.
79+
* Bug fixed in example causing discoverServices to be called multiple times.
80+
* Various other bug fixes.
7781

7882
## 0.2.4
7983
* **Breaking change**. Upgraded to Gradle 4.1 and Android Studio Gradle plugin
@@ -86,26 +90,26 @@
8690

8791
## 0.2.2
8892
* **Breaking changes**:
89-
* `startScan` renamed to `scan`
90-
* `ScanResult` now returns a `BluetoothDevice`
91-
* `connect` now takes a `BluetoothDevice` and returns Stream<BluetoothDeviceState>
92-
* Added parameter `timeout` to `connect`
93-
* Automatic disconnect on deviceConnection.cancel()
93+
* `startScan` renamed to `scan`.
94+
* `ScanResult` now returns a `BluetoothDevice`.
95+
* `connect` now takes a `BluetoothDevice` and returns Stream<BluetoothDeviceState>.
96+
* Added parameter `timeout` to `connect`.
97+
* Automatic disconnect on deviceConnection.cancel().
9498

9599
## 0.2.1
96-
* **Breaking change**. Removed `stopScan` from API, use `scanSubscription.cancel()` instead
97-
* Automatically stops scan when `startScan` subscription is canceled (thanks to @brianegan)
98-
* Added `timeout` parameter to `startScan`
99-
* Updated example app to show new scan functionality
100+
* **Breaking change**. Removed `stopScan` from API, use `scanSubscription.cancel()` instead.
101+
* Automatically stops scan when `startScan` subscription is canceled (thanks to @brianegan).
102+
* Added `timeout` parameter to `startScan`.
103+
* Updated example app to show new scan functionality.
100104

101105
## 0.2.0
102106

103-
* Added state and onStateChanged for BluetoothDevice
104-
* Updated example to show new functionality
107+
* Added state and onStateChanged for BluetoothDevice.
108+
* Updated example to show new functionality.
105109

106110
## 0.1.1
107111

108-
* Fixed image for pub.dartlang.org
112+
* Fixed image for pub.dartlang.org.
109113

110114
## 0.1.0
111115

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: flutter_blue
22
description:
33
Flutter plugin for connecting and communicating with Bluetooth Low Energy devices,
44
on Android and iOS
5-
version: 0.6.3+1
5+
version: 0.7.0
66
author: Paul DeMarco <paulmdemarco@gmail.com>
77
homepage: https://github.com/pauldemarco/flutter_blue
88

0 commit comments

Comments
 (0)