Skip to content

Commit

Permalink
Make new Connectable addition backwards compatible and bump version (#…
Browse files Browse the repository at this point in the history
…757)

Co-authored-by: RutgerVromans <rutger.vromans@signify.com>
  • Loading branch information
RtgrV and RutgerVromans committed Jun 30, 2023
1 parent 1432adf commit 240c3ee
Show file tree
Hide file tree
Showing 11 changed files with 27 additions and 15 deletions.
6 changes: 3 additions & 3 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ packages:
path: "../packages/flutter_reactive_ble"
relative: false
source: path
version: "5.1.0"
version: "5.1.1"
flutter_test:
dependency: "direct dev"
description: flutter
Expand Down Expand Up @@ -440,14 +440,14 @@ packages:
path: "../packages/reactive_ble_mobile"
relative: false
source: path
version: "5.1.0"
version: "5.1.1"
reactive_ble_platform_interface:
dependency: "direct overridden"
description:
path: "../packages/reactive_ble_platform_interface"
relative: true
source: path
version: "5.1.0"
version: "5.1.1"
shelf:
dependency: transitive
description:
Expand Down
4 changes: 2 additions & 2 deletions 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.0
version: 5.1.1
publish_to: 'none'

environment:
Expand All @@ -11,7 +11,7 @@ dependencies:
flutter:
sdk: flutter
flutter_lints: ^1.0.4
flutter_reactive_ble: ^5.1.0
flutter_reactive_ble: ^5.1.1
functional_data: ^1.0.0
intl: ^0.17.0

Expand Down
4 changes: 4 additions & 0 deletions packages/flutter_reactive_ble/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 5.1.1

* Make Connectable backwards compatible #757, #750

## 5.1.0

* Add IsConnectable to discovery data. #750
Expand Down
4 changes: 2 additions & 2 deletions packages/flutter_reactive_ble/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -409,14 +409,14 @@ packages:
path: "../reactive_ble_mobile"
relative: true
source: path
version: "5.1.0"
version: "5.1.1"
reactive_ble_platform_interface:
dependency: "direct main"
description:
path: "../reactive_ble_platform_interface"
relative: true
source: path
version: "5.1.0"
version: "5.1.1"
shelf:
dependency: transitive
description:
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.0
version: 5.1.1
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.0
reactive_ble_platform_interface: ^5.1.0
reactive_ble_mobile: ^5.1.1
reactive_ble_platform_interface: ^5.1.1
dev_dependencies:
build_runner: ^2.3.3
flutter_lints: ^1.0.4
Expand Down
4 changes: 4 additions & 0 deletions packages/reactive_ble_mobile/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 5.1.1

* Make Connectable backwards compatible #757, #750

## 5.1.0

* Add IsConnectable to discovery data. #750
Expand Down
2 changes: 1 addition & 1 deletion packages/reactive_ble_mobile/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ packages:
path: "../reactive_ble_platform_interface"
relative: true
source: path
version: "5.1.0"
version: "5.1.1"
shelf:
dependency: transitive
description:
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.0
version: 5.1.1
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.0
reactive_ble_platform_interface: ^5.1.1
dev_dependencies:
build_runner: ^2.3.3
flutter_test:
Expand Down
4 changes: 4 additions & 0 deletions packages/reactive_ble_platform_interface/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 5.1.1

* Make Connectable backwards compatible #757, #750

## 5.1.0

* Add IsConnectable to discovery data. #750
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ class DiscoveredDevice extends $DiscoveredDevice {
required this.serviceData,
required this.manufacturerData,
required this.rssi,
required this.connectable,
required this.serviceUuids,
this.connectable = Connectable.unknown,
});
}

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.0
version: 5.1.1
homepage: https://github.com/PhilipsHue/flutter_reactive_ble

environment:
Expand Down

0 comments on commit 240c3ee

Please sign in to comment.