diff options
author | Joel Fischer <joeljfischer@gmail.com> | 2016-03-03 16:40:06 -0500 |
---|---|---|
committer | Joel Fischer <joeljfischer@gmail.com> | 2016-03-03 16:40:06 -0500 |
commit | 5a42ccfbca095a5a35b506fa7e91100c6b9eeb49 (patch) | |
tree | e0a2475825c497c6d06ceb381d6e2d93b0aa22d1 | |
parent | 69401a64384afdf839c46080e84809ae8c90a603 (diff) | |
download | sdl_ios-5a42ccfbca095a5a35b506fa7e91100c6b9eeb49.tar.gz |
Update version to 4.0.34.0.3
-rw-r--r-- | CHANGELOG.md | 13 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | SmartDeviceLink-iOS.podspec | 4 | ||||
-rw-r--r-- | SmartDeviceLink-iOS/SmartDeviceLink/Info.plist | 2 | ||||
-rw-r--r-- | SmartDeviceLink-iOS/SmartDeviceLink/SDLProxy.m | 2 |
5 files changed, 18 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index a5c29d44a..1ff63007f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# 4.0.3 Release Notes + +### Enhancements +* Implement HTTP System Requests for policy updates + +### Bug Fix +* Revert the reachability code in TCP. If you were having trouble with connecting to SDL Core, this should fix that particular bug. + +### Other +* Fixed numerous broken tests +* Moved templates and CONTRIBUTING to .github +* Enable code coverage by default when testing + # 4.0.2 Release Notes ### Bug Fixes @@ -34,7 +34,7 @@ See the [changelog](https://github.com/smartdevicelink/sdl_ios/blob/master/CHANG You can install this library using [Cocoapods](https://cocoapods.org/pods/SmartDeviceLink-iOS). You can get started with Cocoapods by [following their install guide](https://guides.cocoapods.org/using/getting-started.html#getting-started), and learn how to use Cocoapods to install dependencies [by following this guide](https://guides.cocoapods.org/using/using-cocoapods.html). -In your podfile, you want to add `pod 'SmartDeviceLink-iOS', '4.0.2'`. Then run `pod install` inside your terminal. With Cocoapods, we support iOS 6+. +In your podfile, you want to add `pod 'SmartDeviceLink-iOS', '4.0.3'`. Then run `pod install` inside your terminal. With Cocoapods, we support iOS 6+. ##### Carthage diff --git a/SmartDeviceLink-iOS.podspec b/SmartDeviceLink-iOS.podspec index 430d7b56e..8cc037321 100644 --- a/SmartDeviceLink-iOS.podspec +++ b/SmartDeviceLink-iOS.podspec @@ -1,13 +1,13 @@ Pod::Spec.new do |s| s.name = "SmartDeviceLink-iOS" - s.version = "4.0.2" + s.version = "4.0.3" s.summary = "Connect your app with cars!" s.homepage = "https://github.com/smartdevicelink/SmartDeviceLink-iOS" s.license = { :type => "New BSD", :file => "LICENSE" } s.author = { "SmartDeviceLink Team" => "joel@livio.io" } s.platform = :ios, "6.0" - s.source = { :git => "https://github.com/smartdevicelink/sdl_ios.git", :tag => "4.0.2" } + s.source = { :git => "https://github.com/smartdevicelink/sdl_ios.git", :tag => "4.0.3" } s.source_files = "SmartDeviceLink-iOS/SmartDeviceLink/*.{h,m}" s.requires_arc = true diff --git a/SmartDeviceLink-iOS/SmartDeviceLink/Info.plist b/SmartDeviceLink-iOS/SmartDeviceLink/Info.plist index aa5940889..161178394 100644 --- a/SmartDeviceLink-iOS/SmartDeviceLink/Info.plist +++ b/SmartDeviceLink-iOS/SmartDeviceLink/Info.plist @@ -15,7 +15,7 @@ <key>CFBundlePackageType</key> <string>FMWK</string> <key>CFBundleShortVersionString</key> - <string>4.0.2</string> + <string>4.0.3</string> <key>CFBundleSignature</key> <string>????</string> <key>CFBundleVersion</key> diff --git a/SmartDeviceLink-iOS/SmartDeviceLink/SDLProxy.m b/SmartDeviceLink-iOS/SmartDeviceLink/SDLProxy.m index 46e790f89..806575f0f 100644 --- a/SmartDeviceLink-iOS/SmartDeviceLink/SDLProxy.m +++ b/SmartDeviceLink-iOS/SmartDeviceLink/SDLProxy.m @@ -45,7 +45,7 @@ typedef void (^URLSessionTaskCompletionHandler)(NSData *data, NSURLResponse *response, NSError *error); typedef void (^URLSessionDownloadTaskCompletionHandler)(NSURL *location, NSURLResponse *response, NSError *error); -NSString *const SDLProxyVersion = @"4.0.2"; +NSString *const SDLProxyVersion = @"4.0.3"; const float startSessionTime = 10.0; const float notifyProxyClosedDelay = 0.1; const int POLICIES_CORRELATION_ID = 65535; |