Skip to content

Commit 0e8f381

Browse files
committed
Incremented the version number ready for a new release
1 parent 100e7f5 commit 0e8f381

File tree

4 files changed

+15
-13
lines changed

4 files changed

+15
-13
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
## 0.1.0
22

3+
* **Breaking** in `Bluetooth.requestDevice()` the `RequestOptions` are no longer nullable.
4+
* **Breaking** `BluetoothDevice.gatt` is no longer marked as deprecated, it is still marked as `visibleForTesting`.
35
* Added bluetooth advertisements event to a bluetooth device. (Note this is still behind a flag in most browsers.)
46
* Support the newest version of logging.
5-
* **Breaking** in `Bluetooth.requestDevice()` the `RequestOptions` are no longer nullable.
67
* Added `requestLEScan` to `Bluetooth` and `FlutterWebBluetooth`. You can now scan for devices advertisements without
78
needing to pair with each device. However, a normal pair does need to happen before characteristics can be used.
8-
* **Breaking** `BluetoothDevice.gatt` is no longer marked as deprecated, it is still marked as `visibleForTesting`.
99
* Continuing with the IOS Bluefy browser fix for characteristic properties.
1010
* Added `has` methods for all the fields in characteristic properties.
1111
* Return `false` as default value when a property doesn't exist.
1212
* Added `hasProperties` method to check if there are any properties at all. Use this to test if the properties are
1313
even reliable.
1414
* You can remove any try-catch logic around reading properties if you added those for the mitigation.
15+
* The next version of the library will probably upgrade the minimum SDK from `2.12` to `2.17` to keep up with other
16+
packages. If there are any good reasons to not do this then please create an issue on Github.
1517

1618
## 0.0.9
1719

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ packages:
101101
path: ".."
102102
relative: true
103103
source: path
104-
version: "0.0.9"
104+
version: "0.1.0"
105105
flutter_web_plugins:
106106
dependency: transitive
107107
description: flutter

pubspec.lock

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ packages:
77
name: _fe_analyzer_shared
88
url: "https://pub.dartlang.org"
99
source: hosted
10-
version: "50.0.0"
10+
version: "51.0.0"
1111
analyzer:
1212
dependency: transitive
1313
description:
1414
name: analyzer
1515
url: "https://pub.dartlang.org"
1616
source: hosted
17-
version: "5.2.0"
17+
version: "5.3.1"
1818
args:
1919
dependency: transitive
2020
description:
@@ -77,7 +77,7 @@ packages:
7777
name: frontend_server_client
7878
url: "https://pub.dartlang.org"
7979
source: hosted
80-
version: "3.1.0"
80+
version: "3.2.0"
8181
glob:
8282
dependency: transitive
8383
description:
@@ -133,7 +133,7 @@ packages:
133133
name: matcher
134134
url: "https://pub.dartlang.org"
135135
source: hosted
136-
version: "0.12.13"
136+
version: "0.12.14"
137137
meta:
138138
dependency: "direct main"
139139
description:
@@ -147,7 +147,7 @@ packages:
147147
name: mime
148148
url: "https://pub.dartlang.org"
149149
source: hosted
150-
version: "1.0.2"
150+
version: "1.0.3"
151151
node_preamble:
152152
dependency: transitive
153153
description:
@@ -168,7 +168,7 @@ packages:
168168
name: path
169169
url: "https://pub.dartlang.org"
170170
source: hosted
171-
version: "1.8.2"
171+
version: "1.8.3"
172172
pool:
173173
dependency: transitive
174174
description:
@@ -266,21 +266,21 @@ packages:
266266
name: test
267267
url: "https://pub.dartlang.org"
268268
source: hosted
269-
version: "1.22.0"
269+
version: "1.22.1"
270270
test_api:
271271
dependency: transitive
272272
description:
273273
name: test_api
274274
url: "https://pub.dartlang.org"
275275
source: hosted
276-
version: "0.4.16"
276+
version: "0.4.17"
277277
test_core:
278278
dependency: transitive
279279
description:
280280
name: test_core
281281
url: "https://pub.dartlang.org"
282282
source: hosted
283-
version: "0.4.20"
283+
version: "0.4.21"
284284
typed_data:
285285
dependency: transitive
286286
description:

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_web_bluetooth
22
description: A library to use the web bluetooth api in your web project. Will play nice if used in IO projects.
3-
version: 0.0.9
3+
version: 0.1.0
44
homepage: https://github.com/jeroen1602/flutter_web_bluetooth/
55
repository: https://github.com/jeroen1602/flutter_web_bluetooth/
66
issue_tracker: https://github.com/jeroen1602/flutter_web_bluetooth/issues/

0 commit comments

Comments
 (0)