summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2015-09-23 13:36:22 -0400
committerJoel Fischer <joeljfischer@gmail.com>2015-09-23 13:36:22 -0400
commit9d6d26b233f1bf5a92ec7b2d1ad61b474edab439 (patch)
tree58e718f545d80b1c831b0fb58a96ca2642b11127
parent5e86e8ca2cf9e2908eee5af7bb619a47f0c013e5 (diff)
downloadsdl_ios-9d6d26b233f1bf5a92ec7b2d1ad61b474edab439.tar.gz
Update to 4.0.0-RC.24.0.0-RC.2
-rw-r--r--CHANGELOG.md3
-rw-r--r--README.md2
-rw-r--r--SmartDeviceLink-iOS.podspec4
-rw-r--r--SmartDeviceLink-iOS/SmartDeviceLink/SDLProxy.m2
4 files changed, 7 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1bf94cc24..f4cab52af 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,8 @@
# 4.0.0 Release Notes (pre-release)
+## Release Candidate 2 (2015-09-23)
+* Fix a warning for passing in an NSUInteger to an int parameter
+
## Release Candidate 1 (2015-09-19)
### Enhancements
diff --git a/README.md b/README.md
index 1112c2401..0fa95cee4 100644
--- a/README.md
+++ b/README.md
@@ -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-RC.1'`. Then run `pod install` inside your terminal.
+In your podfile, you want to add `pod 'SmartDeviceLink-iOS', '4.0.0-RC.2'`. Then run `pod install` inside your terminal.
##### Carthage
diff --git a/SmartDeviceLink-iOS.podspec b/SmartDeviceLink-iOS.podspec
index 397514e77..ef34af1db 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-RC.1"
+ s.version = "4.0.0-RC.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.0-RC.1" }
+ s.source = { :git => "https://github.com/smartdevicelink/sdl_ios.git", :tag => "4.0.0-RC.2" }
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 048f4a8a0..a88a662ab 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-RC.1";
+NSString *const SDLProxyVersion = @"4.0.0-RC.2";
const float startSessionTime = 10.0;
const float notifyProxyClosedDelay = 0.1;
const int POLICIES_CORRELATION_ID = 65535;