diff --git a/CHANGELOG.md b/CHANGELOG.md index d6b78f2f9..cca6d5131 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 4.2.3 Release Notes +### Bug Fixes +* Fixed HTTPS URL schemes not properly uploading data (#432, #438). + # 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). diff --git a/SmartDeviceLink-iOS.podspec b/SmartDeviceLink-iOS.podspec index b86d029c4..6b71ee7ff 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.2" +s.version = "4.2.3" 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 0c28f0027..e07b407d2 100644 --- a/SmartDeviceLink/Info.plist +++ b/SmartDeviceLink/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 4.2.2 + 4.2.3 CFBundleSignature ???? CFBundleVersion diff --git a/SmartDeviceLink/SDLProxy.m b/SmartDeviceLink/SDLProxy.m index dc284e1e6..eb8720d91 100644 --- a/SmartDeviceLink/SDLProxy.m +++ b/SmartDeviceLink/SDLProxy.m @@ -52,7 +52,7 @@ typedef void (^URLSessionTaskCompletionHandler)(NSData *data, NSURLResponse *response, NSError *error); typedef void (^URLSessionDownloadTaskCompletionHandler)(NSURL *location, NSURLResponse *response, NSError *error); -NSString *const SDLProxyVersion = @"4.2.1"; +NSString *const SDLProxyVersion = @"4.2.3"; const float startSessionTime = 10.0; const float notifyProxyClosedDelay = 0.1; const int POLICIES_CORRELATION_ID = 65535;