Skip to content

Commit

Permalink
Release 1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
chipweinberger committed Jul 14, 2023
1 parent d3845cf commit d06510f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@

## 1.7.1
* iOS: fix regression in 1.7.0 when connecting, exception is thrown

## 1.7.0
* internal: removed protobuf dependency
* Android: compileSdkVersion 31 -> 33
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ packages:
path: ".."
relative: true
source: path
version: "1.7.0"
version: "1.7.1"
js:
dependency: transitive
description:
Expand Down
3 changes: 2 additions & 1 deletion ios/Classes/FlutterBluePlusPlugin.m
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,8 @@ - (void)handleMethodCall:(FlutterMethodCall *)call result:(FlutterResult)result
CBPeripheral *peripheral = nil;
if (peripheral == nil)
{
peripheral = [self findPeripheral:remoteId];
@try {peripheral = [self findPeripheral:remoteId];}
@catch (NSException *e){} // we don't always expect to find it
}
if (peripheral == nil)
{
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_blue_plus
description: Flutter plugin for connecting and communicationg with Bluetooth Low Energy devices, on Android and iOS
version: 1.7.0
version: 1.7.1
homepage: https://github.com/boskokg/flutter_blue_plus

environment:
Expand Down

0 comments on commit d06510f

Please sign in to comment.