Skip to content

Commit 82e981a

Browse files
author
Jeremy Chiang
committed
Hot fix for not starting the queue after transferring Bluetooth states back to Bluejay
1 parent 2959964 commit 82e981a

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

Bluejay.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Pod::Spec.new do |spec|
22
spec.name = 'Bluejay'
3-
spec.version = '0.8.7'
3+
spec.version = '0.8.8'
44
spec.license = { type: 'MIT', file: 'LICENSE' }
55
spec.homepage = 'https://github.com/steamclock/bluejay'
66
spec.authors = { 'Jeremy Chiang' => 'jeremy@steamclock.com' }
77
spec.summary = 'Bluejay is a simple Swift framework for building reliable Bluetooth apps.'
88
spec.homepage = 'https://github.com/steamclock/bluejay'
9-
spec.source = { git: 'https://github.com/steamclock/bluejay.git', tag: 'v0.8.7' }
9+
spec.source = { git: 'https://github.com/steamclock/bluejay.git', tag: 'v0.8.8' }
1010
spec.source_files = 'Bluejay/Bluejay/*.{h,swift}'
1111
spec.framework = 'SystemConfiguration'
1212
spec.platform = :ios, '11.0'

Bluejay/Bluejay.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1084,7 +1084,7 @@
10841084
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
10851085
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
10861086
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1087-
MARKETING_VERSION = 0.8.7;
1087+
MARKETING_VERSION = 0.8.8;
10881088
PRODUCT_BUNDLE_IDENTIFIER = com.steamclock.Bluejay;
10891089
PRODUCT_NAME = "$(TARGET_NAME)";
10901090
SKIP_INSTALL = YES;
@@ -1111,7 +1111,7 @@
11111111
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
11121112
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
11131113
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
1114-
MARKETING_VERSION = 0.8.7;
1114+
MARKETING_VERSION = 0.8.8;
11151115
PRODUCT_BUNDLE_IDENTIFIER = com.steamclock.Bluejay;
11161116
PRODUCT_NAME = "$(TARGET_NAME)";
11171117
SKIP_INSTALL = YES;

Bluejay/Bluejay/Bluejay.swift

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264,6 +264,8 @@ public class Bluejay: NSObject { //swiftlint:disable:this type_body_length
264264
connectedPeripheral = Peripheral(delegate: self, cbPeripheral: peripheral, bluejay: self)
265265
peripheral.delegate = connectedPeripheral
266266
}
267+
268+
queue.start()
267269
}
268270

269271
debugLog("Bluejay with UUID: \(uuid.uuidString) started.")

0 commit comments

Comments
 (0)