diff options
-rw-r--r-- | CHANGELOG.md | 4 | ||||
-rw-r--r-- | README.md | 6 | ||||
-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, 10 insertions, 8 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index bbe85e816..a5c29d44a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# In Progress +# 4.0.2 Release Notes ### Bug Fixes * Debug logging is a bit better designed and is faster, and file logging happens on a separate queue. @@ -7,11 +7,13 @@ * SDLProxyListener was marking the wrong type for a passed delegate object. `onOnLockScreenNotification:` now correctly passes a type `SDLOnLockScreenStatus` instead of an `SDLLockScreenStatus`. * Return `nil` if an object was never set to an RPC. This fixes many unit tests. * Don't allow `SDLRPCStruct` to initialize with a `nil` backing store. This fixes unit tests. +* MTU size has been fixed to be base 8 based instead of base 10. ### Other * Apple broke SDL's app launching scheme in iOS 9.0, so this code has been removed from the project. Apple fixed a bug in iOS 9.2 that alleviates much of the missing functionality. * The example app no longer has video and audio code, and its app type is now `MEDIA` instead of `NAVIGATION`. * Travis CI builds are fixed +* Pull-Request and Issue templates have been added # 4.0.1 Release notes @@ -1,8 +1,8 @@ [](https://github.com/Carthage/Carthage) [](https://cocoapods.org/pods/SmartDeviceLink-iOS) [](https://cocoapods.org/pods/SmartDeviceLink-iOS) -[](https://travis-ci.org/smartdevicelink/sdl_ios) -[](http://codecov.io/github/smartdevicelink/sdl_ios?branch=release/4.0.1) +[](https://travis-ci.org/smartdevicelink/sdl_ios) +[](http://codecov.io/github/smartdevicelink/sdl_ios?branch=master) [](http://slack.smartdevicelink.org) @@ -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.1'`. 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.2'`. 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 57ae86d36..430d7b56e 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.1" + s.version = "4.0.2" 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.1" } + s.source = { :git => "https://github.com/smartdevicelink/sdl_ios.git", :tag => "4.0.2" } 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 d7feac3ec..aa5940889 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.1</string> + <string>4.0.2</string> <key>CFBundleSignature</key> <string>????</string> <key>CFBundleVersion</key> diff --git a/SmartDeviceLink-iOS/SmartDeviceLink/SDLProxy.m b/SmartDeviceLink-iOS/SmartDeviceLink/SDLProxy.m index f26256bfd..1f49b6eeb 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.1"; +NSString *const SDLProxyVersion = @"4.0.2"; const float startSessionTime = 10.0; const float notifyProxyClosedDelay = 0.1; const int POLICIES_CORRELATION_ID = 65535; |