diff --git a/CHANGELOG b/CHANGELOG index 7e5570c..ded23b6 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,11 @@ +* **Version 1.3.2** + - Bugfix: Fixed bug causing delete Thingy action sheet not to work on iPad causing a crash + +* **Version 1.3.1** + - Bugfix: Fixed bug causing app to crash when deleting the first connected Thingy + - Improvement: iOS 11 UI refresh + - Improvement: iPhone X UI adaptation + * **Version 1.3.0** - Improvement: Thingy SDK will now return nil instead of 0.0.0 on version reading if it's not ready. - Improvement: All view presentations now are done from navigation controllers instead of detached views. diff --git a/Example/Podfile.lock b/Example/Podfile.lock index ecfa223..1de20d4 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -4,7 +4,7 @@ PODS: - Charts/Core (3.0.4) - iOSDFULibrary (4.0.3): - Zip (~> 1.0) - - IOSThingyLibrary (1.3.1): + - IOSThingyLibrary (1.3.2): - iOSDFULibrary (~> 4.0) - Keychain (0.3.1) - SDCAlertView (8.0.1) @@ -25,7 +25,7 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: Charts: 0705898046257443f0afbbc3179f4b67507b6e48 iOSDFULibrary: 7a8fd23fb6a673ba311cd3821f8f5b4bd1eb1dce - IOSThingyLibrary: a7f55e186fc0c072f70b5d8e80aba1755372b896 + IOSThingyLibrary: 71ec0e00b7bfcf0a95df19d34c6b527e0daca6e6 Keychain: ef812eafcf6593fe4409b07cfecc00b95fb373ed SDCAlertView: 0dac88159108e755a78ca8d789b3b82305accae4 SWRevealViewController: 6d3fd97f70112fd7cef9de14df4260eacce4c63a diff --git a/Example/Pods/Local Podspecs/IOSThingyLibrary.podspec.json b/Example/Pods/Local Podspecs/IOSThingyLibrary.podspec.json index 46c5330..4bdbabc 100644 --- a/Example/Pods/Local Podspecs/IOSThingyLibrary.podspec.json +++ b/Example/Pods/Local Podspecs/IOSThingyLibrary.podspec.json @@ -1,6 +1,6 @@ { "name": "IOSThingyLibrary", - "version": "1.3.1", + "version": "1.3.2", "summary": "A Swift 4 SDK implementation for the Nordic:Thingy32 produced by Nordic Semiconductor", "description": "This is a mobile SDK for the Thingy:52 devices developed by Nordic Semiconductor, the Thingy\nis a development board with a vast amount of sensors, an input button and a RGB LED, fully\ncustomizable thanks to its Bluetooth API that requires no firmware programming knowledge.\nThis SDK takes it a step further by allowing developers create their own Thingy:52 compatible\napplications with ease.", "homepage": "https://www.nordicsemi.com", @@ -14,7 +14,7 @@ }, "source": { "git": "https://github.com/NordicSemiconductor/IOS-Nordic-Thingy.git", - "tag": "1.3.1" + "tag": "1.3.2" }, "social_media_url": "https://twitter.com/nordictweets", "platforms": { diff --git a/Example/Pods/Manifest.lock b/Example/Pods/Manifest.lock index ecfa223..1de20d4 100644 --- a/Example/Pods/Manifest.lock +++ b/Example/Pods/Manifest.lock @@ -4,7 +4,7 @@ PODS: - Charts/Core (3.0.4) - iOSDFULibrary (4.0.3): - Zip (~> 1.0) - - IOSThingyLibrary (1.3.1): + - IOSThingyLibrary (1.3.2): - iOSDFULibrary (~> 4.0) - Keychain (0.3.1) - SDCAlertView (8.0.1) @@ -25,7 +25,7 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: Charts: 0705898046257443f0afbbc3179f4b67507b6e48 iOSDFULibrary: 7a8fd23fb6a673ba311cd3821f8f5b4bd1eb1dce - IOSThingyLibrary: a7f55e186fc0c072f70b5d8e80aba1755372b896 + IOSThingyLibrary: 71ec0e00b7bfcf0a95df19d34c6b527e0daca6e6 Keychain: ef812eafcf6593fe4409b07cfecc00b95fb373ed SDCAlertView: 0dac88159108e755a78ca8d789b3b82305accae4 SWRevealViewController: 6d3fd97f70112fd7cef9de14df4260eacce4c63a diff --git a/Example/Pods/Target Support Files/IOSThingyLibrary/Info.plist b/Example/Pods/Target Support Files/IOSThingyLibrary/Info.plist index 10f280e..6c1d64f 100644 --- a/Example/Pods/Target Support Files/IOSThingyLibrary/Info.plist +++ b/Example/Pods/Target Support Files/IOSThingyLibrary/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 1.3.1 + 1.3.2 CFBundleSignature ???? CFBundleVersion diff --git a/Example/ThingySDK/Info.plist b/Example/ThingySDK/Info.plist index a440c5a..f376f88 100644 --- a/Example/ThingySDK/Info.plist +++ b/Example/ThingySDK/Info.plist @@ -34,11 +34,11 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.3.1 + 1.3.2 CFBundleSignature ???? CFBundleVersion - 14 + 15 LSRequiresIPhoneOS NFCReaderUsageDescription diff --git a/IOSThingyLibrary.podspec b/IOSThingyLibrary.podspec index b09b0a7..2431023 100644 --- a/IOSThingyLibrary.podspec +++ b/IOSThingyLibrary.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'IOSThingyLibrary' - s.version = '1.3.1' + s.version = '1.3.2' s.summary = 'A Swift 4 SDK implementation for the Nordic:Thingy32 produced by Nordic Semiconductor' s.description = <<-DESC This is a mobile SDK for the Thingy:52 devices developed by Nordic Semiconductor, the Thingy diff --git a/README.md b/README.md index ec9423b..bab2b48 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Thingy SDK for iOS ``` target 'YourAppTargetName' do use_frameworks! - pod 'IOSThingyLibrary', '~> 1.3.1' + pod 'IOSThingyLibrary', '~> 1.3.2' end ``` - Install dependencies @@ -21,7 +21,7 @@ pod install **For Carthage:** - Create a new **Cartfile** in your project's root with the following contents ``` -github "NordicSemiconductor/NordicSemiconductor/IOS-Nordic-Thingy" ~> 1.3.1 +github "NordicSemiconductor/NordicSemiconductor/IOS-Nordic-Thingy" ~> 1.3.2 ``` - Build with carthage