From eba5a152ddf54b6855c109a422253ca846a10451 Mon Sep 17 00:00:00 2001 From: uerceg Date: Tue, 9 Apr 2024 16:34:14 +0200 Subject: [PATCH 1/4] fix: remove nullability warnings --- Adjust/ADJUrlStrategy.h | 6 +++--- Adjust/ADJUtil.h | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Adjust/ADJUrlStrategy.h b/Adjust/ADJUrlStrategy.h index 08942faae..2bd3dcba8 100644 --- a/Adjust/ADJUrlStrategy.h +++ b/Adjust/ADJUrlStrategy.h @@ -16,9 +16,9 @@ - (instancetype)initWithUrlStrategyInfo:(NSString *)urlStrategyInfo extraPath:(NSString *)extraPath; -- (nonnull NSString *)urlForActivityKind:(ADJActivityKind)activityKind - isConsentGiven:(BOOL)isConsentGiven - withSendingParams:(NSMutableDictionary *)sendingParams; +- (NSString *)urlForActivityKind:(ADJActivityKind)activityKind + isConsentGiven:(BOOL)isConsentGiven + withSendingParams:(NSMutableDictionary *)sendingParams; - (void)resetAfterSuccess; - (BOOL)shouldRetryAfterFailure:(ADJActivityKind)activityKind; diff --git a/Adjust/ADJUtil.h b/Adjust/ADJUtil.h index 5b3ed8998..391f1c589 100644 --- a/Adjust/ADJUtil.h +++ b/Adjust/ADJUtil.h @@ -144,6 +144,6 @@ typedef void (^isInactiveInjected)(BOOL); + (BOOL)shouldUseConsentParamsForActivityKind:(ADJActivityKind)activityKind; + (BOOL)shouldUseConsentParamsForActivityKind:(ADJActivityKind)activityKind - andAttStatus:(nullable NSString *)attStatusString; + andAttStatus:(NSString *)attStatusString; @end From 6f8c536353f9c3c96650b78713823f6ff1bcf3d7 Mon Sep 17 00:00:00 2001 From: uerceg Date: Tue, 9 Apr 2024 16:35:12 +0200 Subject: [PATCH 2/4] feat: update version number to 4.38.1 --- Adjust.podspec | 4 ++-- Adjust/ADJUtil.m | 2 +- Adjust/Adjust.h | 2 +- AdjustBridge/AdjustBridgeRegister.m | 2 +- VERSION | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Adjust.podspec b/Adjust.podspec index 4d4f9dab2..684efaaea 100644 --- a/Adjust.podspec +++ b/Adjust.podspec @@ -1,11 +1,11 @@ Pod::Spec.new do |s| s.name = "Adjust" - s.version = "4.38.0" + s.version = "4.38.1" s.summary = "This is the iOS SDK of adjust. You can read more about it at http://adjust.com." s.homepage = "https://github.com/adjust/ios_sdk" s.license = { :type => 'MIT', :file => 'MIT-LICENSE' } s.author = { "Adjust" => "sdk@adjust.com" } - s.source = { :git => "https://github.com/adjust/ios_sdk.git", :tag => "v4.38.0" } + s.source = { :git => "https://github.com/adjust/ios_sdk.git", :tag => "v4.38.1" } s.ios.deployment_target = '9.0' s.tvos.deployment_target = '9.0' s.framework = 'SystemConfiguration' diff --git a/Adjust/ADJUtil.m b/Adjust/ADJUtil.m index 239ef4456..43a430e46 100644 --- a/Adjust/ADJUtil.m +++ b/Adjust/ADJUtil.m @@ -35,7 +35,7 @@ static NSRegularExpression *shortUniversalLinkRegex = nil; static NSRegularExpression *excludedDeeplinkRegex = nil; -static NSString * const kClientSdk = @"ios4.38.0"; +static NSString * const kClientSdk = @"ios4.38.1"; static NSString * const kDeeplinkParam = @"deep_link="; static NSString * const kSchemeDelimiter = @"://"; static NSString * const kDefaultScheme = @"AdjustUniversalScheme"; diff --git a/Adjust/Adjust.h b/Adjust/Adjust.h index 47517abba..9ce2cd029 100644 --- a/Adjust/Adjust.h +++ b/Adjust/Adjust.h @@ -2,7 +2,7 @@ // Adjust.h // Adjust SDK // -// V4.38.0 +// V4.38.1 // Created by Christian Wellenbrock (@wellle) on 23rd July 2013. // Copyright (c) 2012-2021 Adjust GmbH. All rights reserved. // diff --git a/AdjustBridge/AdjustBridgeRegister.m b/AdjustBridge/AdjustBridgeRegister.m index c71cffaa6..e3cd4716b 100644 --- a/AdjustBridge/AdjustBridgeRegister.m +++ b/AdjustBridge/AdjustBridgeRegister.m @@ -280,7 +280,7 @@ + (NSString *)adjust_js { if (this.sdkPrefix) { return this.sdkPrefix; } else { - return 'web-bridge4.38.0'; + return 'web-bridge4.38.1'; } }, setTestOptions: function(testOptions) { diff --git a/VERSION b/VERSION index fff125e79..bcdb58032 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.38.0 +4.38.1 From 5c83cef60167c1ef5959aec3c842d9c69f064c5d Mon Sep 17 00:00:00 2001 From: uerceg Date: Tue, 9 Apr 2024 16:36:00 +0200 Subject: [PATCH 3/4] docs: update changelog --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3458216e5..14b21b081 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +### Version 4.38.1 (9th April 2024) +#### Fixed +- Removed nullability type specifier warnings (https://github.com/adjust/ios_sdk/issues/703). + +--- + ### Version 4.38.0 (22nd March 2024) #### Added - Added Privacy Manifest for the Adjust SDK. From df710ffd807f91277cfa13e185414c9a89e941f0 Mon Sep 17 00:00:00 2001 From: uerceg Date: Wed, 10 Apr 2024 09:42:00 +0200 Subject: [PATCH 4/4] docs: update changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 14b21b081..eb78919f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -### Version 4.38.1 (9th April 2024) +### Version 4.38.1 (10th April 2024) #### Fixed - Removed nullability type specifier warnings (https://github.com/adjust/ios_sdk/issues/703).