Skip to content

Commit

Permalink
bump version 5.2.0 (#787)
Browse files Browse the repository at this point in the history
  • Loading branch information
Taym95 committed Aug 28, 2023
1 parent 49aa9d9 commit 8a4b03e
Show file tree
Hide file tree
Showing 8 changed files with 201 additions and 95 deletions.
252 changes: 164 additions & 88 deletions example/pubspec.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_reactive_ble_example
description: Demonstrates how to use the flutter_reactive_ble plugin.
version: 5.1.1
version: 5.2.0
publish_to: 'none'

environment:
Expand Down
10 changes: 10 additions & 0 deletions packages/flutter_reactive_ble/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 5.2.0

* Bump the minimum requirement to Dart 2.17 and upgrade melos to 3.1.0 in #762
* swiftlint config and inital formatting pass in #765
* Cancel subscription when a disconnect event has been thrown in #769
* Fix typos in #778
* Update CI config to use Xcode 14 in #786
* Support multiple services or characteristics with the same id in #776
* Breaking change: If a device has multiple characteristics with the same ID, `readCharacteristic`, `writeCharacteristic` and `subscribeToCharacteristic` used to select the first of those characteristics. Now they will fail in this case. Use `resolve` or `getDiscoveredServices` instead.

## 5.1.1

* Make Connectable backwards compatible #757, #750
Expand Down
6 changes: 3 additions & 3 deletions packages/flutter_reactive_ble/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_reactive_ble
description: Reactive Bluetooth Low Energy (BLE) plugin that can communicate with multiple devices
version: 5.1.1
version: 5.2.0
homepage: https://github.com/PhilipsHue/flutter_reactive_ble

environment:
Expand All @@ -21,8 +21,8 @@ dependencies:
sdk: flutter
functional_data: ^1.0.0
meta: ^1.3.0
reactive_ble_mobile: ^5.1.1
reactive_ble_platform_interface: ^5.1.1
reactive_ble_mobile: ^5.2.0
reactive_ble_platform_interface: ^5.2.0

dependency_overrides:
reactive_ble_mobile:
Expand Down
10 changes: 10 additions & 0 deletions packages/reactive_ble_mobile/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 5.2.0

* Bump the minimum requirement to Dart 2.17 and upgrade melos to 3.1.0 in #762
* swiftlint config and inital formatting pass in #765
* Cancel subscription when a disconnect event has been thrown in #769
* Fix typos in #778
* Update CI config to use Xcode 14 in #786
* Support multiple services or characteristics with the same id in #776
* Breaking change: If a device has multiple characteristics with the same ID, `readCharacteristic`, `writeCharacteristic` and `subscribeToCharacteristic` used to select the first of those characteristics. Now they will fail in this case. Use `resolve` or `getDiscoveredServices` instead.

## 5.1.1

* Make Connectable backwards compatible #757, #750
Expand Down
4 changes: 2 additions & 2 deletions packages/reactive_ble_mobile/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: reactive_ble_mobile
description: Official Android and iOS implementation for the flutter_reactive_ble plugin.
version: 5.1.1
version: 5.2.0
homepage: https://github.com/PhilipsHue/flutter_reactive_ble

environment:
Expand All @@ -11,7 +11,7 @@ dependencies:
flutter:
sdk: flutter
protobuf: ^2.0.0
reactive_ble_platform_interface: ^5.1.1
reactive_ble_platform_interface: ^5.2.0

dev_dependencies:
build_runner: ^2.3.3
Expand Down
10 changes: 10 additions & 0 deletions packages/reactive_ble_platform_interface/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 5.2.0

* Bump the minimum requirement to Dart 2.17 and upgrade melos to 3.1.0 in #762
* swiftlint config and inital formatting pass in #765
* Cancel subscription when a disconnect event has been thrown in #769
* Fix typos in #778
* Update CI config to use Xcode 14 in #786
* Support multiple services or characteristics with the same id in #776
* Breaking change: If a device has multiple characteristics with the same ID, `readCharacteristic`, `writeCharacteristic` and `subscribeToCharacteristic` used to select the first of those characteristics. Now they will fail in this case. Use `resolve` or `getDiscoveredServices` instead.

## 5.1.1

* Make Connectable backwards compatible #757, #750
Expand Down
2 changes: 1 addition & 1 deletion packages/reactive_ble_platform_interface/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: reactive_ble_platform_interface
description: Platform interface for the flutter_reactive_ble_project
version: 5.1.1
version: 5.2.0
homepage: https://github.com/PhilipsHue/flutter_reactive_ble

environment:
Expand Down

0 comments on commit 8a4b03e

Please sign in to comment.