Skip to content

Commit 3179722

Browse files
authored
Merge pull request #705 from adjust/v4381
Version 4.38.1
2 parents 3ebb6fe + df710ff commit 3179722

8 files changed

+16
-10
lines changed

Adjust.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
Pod::Spec.new do |s|
22
s.name = "Adjust"
3-
s.version = "4.38.0"
3+
s.version = "4.38.1"
44
s.summary = "This is the iOS SDK of adjust. You can read more about it at http://adjust.com."
55
s.homepage = "https://github.com/adjust/ios_sdk"
66
s.license = { :type => 'MIT', :file => 'MIT-LICENSE' }
77
s.author = { "Adjust" => "[email protected]" }
8-
s.source = { :git => "https://github.com/adjust/ios_sdk.git", :tag => "v4.38.0" }
8+
s.source = { :git => "https://github.com/adjust/ios_sdk.git", :tag => "v4.38.1" }
99
s.ios.deployment_target = '9.0'
1010
s.tvos.deployment_target = '9.0'
1111
s.framework = 'SystemConfiguration'

Adjust/ADJUrlStrategy.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
- (instancetype)initWithUrlStrategyInfo:(NSString *)urlStrategyInfo
1717
extraPath:(NSString *)extraPath;
1818

19-
- (nonnull NSString *)urlForActivityKind:(ADJActivityKind)activityKind
20-
isConsentGiven:(BOOL)isConsentGiven
21-
withSendingParams:(NSMutableDictionary *)sendingParams;
19+
- (NSString *)urlForActivityKind:(ADJActivityKind)activityKind
20+
isConsentGiven:(BOOL)isConsentGiven
21+
withSendingParams:(NSMutableDictionary *)sendingParams;
2222

2323
- (void)resetAfterSuccess;
2424
- (BOOL)shouldRetryAfterFailure:(ADJActivityKind)activityKind;

Adjust/ADJUtil.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,6 @@ typedef void (^isInactiveInjected)(BOOL);
144144
+ (BOOL)shouldUseConsentParamsForActivityKind:(ADJActivityKind)activityKind;
145145

146146
+ (BOOL)shouldUseConsentParamsForActivityKind:(ADJActivityKind)activityKind
147-
andAttStatus:(nullable NSString *)attStatusString;
147+
andAttStatus:(NSString *)attStatusString;
148148

149149
@end

Adjust/ADJUtil.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
static NSRegularExpression *shortUniversalLinkRegex = nil;
3636
static NSRegularExpression *excludedDeeplinkRegex = nil;
3737

38-
static NSString * const kClientSdk = @"ios4.38.0";
38+
static NSString * const kClientSdk = @"ios4.38.1";
3939
static NSString * const kDeeplinkParam = @"deep_link=";
4040
static NSString * const kSchemeDelimiter = @"://";
4141
static NSString * const kDefaultScheme = @"AdjustUniversalScheme";

Adjust/Adjust.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Adjust.h
33
// Adjust SDK
44
//
5-
// V4.38.0
5+
// V4.38.1
66
// Created by Christian Wellenbrock (@wellle) on 23rd July 2013.
77
// Copyright (c) 2012-2021 Adjust GmbH. All rights reserved.
88
//

AdjustBridge/AdjustBridgeRegister.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ + (NSString *)adjust_js {
280280
if (this.sdkPrefix) {
281281
return this.sdkPrefix;
282282
} else {
283-
return 'web-bridge4.38.0';
283+
return 'web-bridge4.38.1';
284284
}
285285
},
286286
setTestOptions: function(testOptions) {

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### Version 4.38.1 (10th April 2024)
2+
#### Fixed
3+
- Removed nullability type specifier warnings (https://github.com/adjust/ios_sdk/issues/703).
4+
5+
---
6+
17
### Version 4.38.0 (22nd March 2024)
28
#### Added
39
- Added Privacy Manifest for the Adjust SDK.

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.38.0
1+
4.38.1

0 commit comments

Comments
 (0)