Skip to content

Commit

Permalink
Merge pull request #705 from adjust/v4381
Browse files Browse the repository at this point in the history
Version 4.38.1
  • Loading branch information
uerceg committed Apr 10, 2024
2 parents 3ebb6fe + df710ff commit 3179722
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Adjust.podspec
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
6 changes: 3 additions & 3 deletions Adjust/ADJUrlStrategy.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion Adjust/ADJUtil.h
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,6 @@ typedef void (^isInactiveInjected)(BOOL);
+ (BOOL)shouldUseConsentParamsForActivityKind:(ADJActivityKind)activityKind;

+ (BOOL)shouldUseConsentParamsForActivityKind:(ADJActivityKind)activityKind
andAttStatus:(nullable NSString *)attStatusString;
andAttStatus:(NSString *)attStatusString;

@end
2 changes: 1 addition & 1 deletion Adjust/ADJUtil.m
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down
2 changes: 1 addition & 1 deletion Adjust/Adjust.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
//
Expand Down
2 changes: 1 addition & 1 deletion AdjustBridge/AdjustBridgeRegister.m
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### Version 4.38.1 (10th 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.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.38.0
4.38.1

0 comments on commit 3179722

Please sign in to comment.