summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joel@livio.io>2015-09-19 11:31:37 -0400
committerJoel Fischer <joel@livio.io>2015-09-19 11:31:37 -0400
commit4ee93277a69adaae87052454c6abd32bd014f963 (patch)
tree18a02cdcf6625b0b34962fc07f87562551fb9948
parent0ff697ad5fb0eafa2218fb742368bb2d6dc5abf1 (diff)
downloadsdl_ios-4ee93277a69adaae87052454c6abd32bd014f963.tar.gz
Update to 4.0.0 release candidate 14.0.0-RC.1
-rw-r--r--CHANGELOG.md16
-rw-r--r--README.md4
-rw-r--r--SmartDeviceLink-iOS.podspec4
-rw-r--r--SmartDeviceLink-iOS/SmartDeviceLink/SDLProxy.m2
4 files changed, 20 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e13045005..1bf94cc24 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,20 @@
# 4.0.0 Release Notes (pre-release)
+## Release Candidate 1 (2015-09-19)
+
+### Enhancements
+* Lock screen icon is now fetched
+* Hex string parsing is now roughly twice as fast
+
+### Bug Fixes
+* Web request delegates weren't always called
+* Streaming audio fixes
+* Large chunks of data passed over TCP no longer uses far too much memory
+* Xcode 7 warnings fixed
+* Test frameworks updated for Swift 2.0
+* Build server fixes
+
+
## Alpha 4 (2015-09-08)
### Enhancements
@@ -7,7 +22,6 @@
* Formatted files.
* SDLChangeRegistration RPC updated with new parameters.
* Heartbeat is now implemented for v3 head units and greater.
-* Lock Screen Image URL fetching is now implemented.
* Callback methods in SDLProxyListener protocol implemented for new RPCs.
* Buffer size for transport greatly increased for v3 and greater.
* Now compatible with iOS 6+ instead of just iOS 7+ using Cocoapods.
diff --git a/README.md b/README.md
index 404e1d32b..1112c2401 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-##### Note: Please see the [release/4.0.0](https://github.com/smartdevicelink/sdl_ios/tree/release/4.0.0) branch of sdl_ios for the most recent version. Significant changes have been made since the latest stable release and the in-progress develop branch. When released, it will include distribution via Carthage and Cocoapods. The current alpha has Cocoapods support, see below for installation instructions.
+##### Note: Please see the [release/4.0.0](https://github.com/smartdevicelink/sdl_ios/tree/release/4.0.0) branch of sdl_ios for the most recent version. Significant changes have been made since the latest stable release and the in-progress develop branch. When released, it will include distribution via Carthage and Cocoapods. The current release candidate has Cocoapods support, see below for installation instructions.
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
[![Version](https://img.shields.io/cocoapods/v/SmartDeviceLink-iOS.svg?style=flat)](https://cocoapods.org/pods/SmartDeviceLink-iOS)
@@ -33,7 +33,7 @@ See the [changelog](https://github.com/smartdevicelink/sdl_ios/blob/release/4.0.
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.0-alpha.4'`. Then run `pod install` inside your terminal.
+In your podfile, you want to add `pod 'SmartDeviceLink-iOS', '4.0.0-RC.1'`. Then run `pod install` inside your terminal.
##### Carthage
diff --git a/SmartDeviceLink-iOS.podspec b/SmartDeviceLink-iOS.podspec
index c7c2b80b7..397514e77 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.0-alpha.4"
+ s.version = "4.0.0-RC.1"
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.0-alpha.3" }
+ s.source = { :git => "https://github.com/smartdevicelink/sdl_ios.git", :tag => "4.0.0-RC.1" }
s.source_files = "SmartDeviceLink-iOS/SmartDeviceLink/*.{h,m}"
s.requires_arc = true
diff --git a/SmartDeviceLink-iOS/SmartDeviceLink/SDLProxy.m b/SmartDeviceLink-iOS/SmartDeviceLink/SDLProxy.m
index 47df53160..048f4a8a0 100644
--- a/SmartDeviceLink-iOS/SmartDeviceLink/SDLProxy.m
+++ b/SmartDeviceLink-iOS/SmartDeviceLink/SDLProxy.m
@@ -46,7 +46,7 @@
typedef void (^URLSessionTaskCompletionHandler)(NSData *data, NSURLResponse *response, NSError *error);
typedef void (^URLSessionDownloadTaskCompletionHandler)(NSURL *location, NSURLResponse *response, NSError *error);
-NSString *const SDLProxyVersion = @"4.0.0-alpha.4";
+NSString *const SDLProxyVersion = @"4.0.0-RC.1";
const float startSessionTime = 10.0;
const float notifyProxyClosedDelay = 0.1;
const int POLICIES_CORRELATION_ID = 65535;