From 13ce1878d5b13fcb4cfbb8504dadc28fce76d977 Mon Sep 17 00:00:00 2001 From: Joel Fischer Date: Thu, 18 Aug 2016 14:52:50 -0400 Subject: [PATCH] Update version to 4.2.2 --- CHANGELOG.md | 4 ++++ SmartDeviceLink-iOS.podspec | 2 +- SmartDeviceLink/Info.plist | 2 +- SmartDeviceLink_Example/Classes/ProxyManager.h | 2 ++ SmartDeviceLink_Example/Classes/ProxyManager.m | 1 - 5 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 00373f7e2..d6b78f2f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 4.2.2 Release Notes +### Bug Fixes +* Fixed HTTP URL schemes not being properly altered to HTTPS to account for App Transport Security (#432, #436). + # 4.2.1 Release Notes ### Bug Fixes * Fixed SDLStreamingMediaManager encryption status not being set properly (#433, #434). diff --git a/SmartDeviceLink-iOS.podspec b/SmartDeviceLink-iOS.podspec index 1f934398c..b86d029c4 100644 --- a/SmartDeviceLink-iOS.podspec +++ b/SmartDeviceLink-iOS.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "SmartDeviceLink-iOS" -s.version = "4.2.1" +s.version = "4.2.2" s.summary = "Connect your app with cars!" s.homepage = "https://github.com/smartdevicelink/SmartDeviceLink-iOS" s.license = { :type => "New BSD", :file => "LICENSE" } diff --git a/SmartDeviceLink/Info.plist b/SmartDeviceLink/Info.plist index 1461558ac..0c28f0027 100644 --- a/SmartDeviceLink/Info.plist +++ b/SmartDeviceLink/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 4.2.1 + 4.2.2 CFBundleSignature ???? CFBundleVersion diff --git a/SmartDeviceLink_Example/Classes/ProxyManager.h b/SmartDeviceLink_Example/Classes/ProxyManager.h index 604ffdc82..2d82bd698 100644 --- a/SmartDeviceLink_Example/Classes/ProxyManager.h +++ b/SmartDeviceLink_Example/Classes/ProxyManager.h @@ -4,6 +4,7 @@ #import +@class SDLProxy; @class SDLStreamingMediaManager; @@ -23,6 +24,7 @@ typedef NS_ENUM(NSUInteger, ProxyState) { @interface ProxyManager : NSObject @property (assign, nonatomic, readonly) ProxyState state; +@property (strong, nonatomic) SDLProxy *proxy; + (instancetype)sharedManager; - (void)startProxyWithTransportType:(ProxyTransportType)transportType; diff --git a/SmartDeviceLink_Example/Classes/ProxyManager.m b/SmartDeviceLink_Example/Classes/ProxyManager.m index 355e91340..a37d5cb18 100644 --- a/SmartDeviceLink_Example/Classes/ProxyManager.m +++ b/SmartDeviceLink_Example/Classes/ProxyManager.m @@ -15,7 +15,6 @@ @interface ProxyManager () -@property (strong, nonatomic) SDLProxy *proxy; @property (assign, nonatomic, readwrite) ProxyState state; @property (assign, nonatomic) BOOL isFirstHMIFull; @property (assign, nonatomic) ProxyTransportType currentTransportType;