Skip to content

Commit

Permalink
Merge pull request #670 from adjust/v4336
Browse files Browse the repository at this point in the history
Version 4.33.6
  • Loading branch information
uerceg authored Jul 25, 2023
2 parents c97e8e3 + 7a766fe commit 76c9552
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 14 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.33.5"
s.version = "4.33.6"
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" => "[email protected]" }
s.source = { :git => "https://github.com/adjust/ios_sdk.git", :tag => "v4.33.5" }
s.source = { :git => "https://github.com/adjust/ios_sdk.git", :tag => "v4.33.6" }
s.ios.deployment_target = '9.0'
s.tvos.deployment_target = '9.0'
s.framework = 'SystemConfiguration'
Expand Down
11 changes: 6 additions & 5 deletions 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.33.5";
static NSString * const kClientSdk = @"ios4.33.6";
static NSString * const kDeeplinkParam = @"deep_link=";
static NSString * const kSchemeDelimiter = @"://";
static NSString * const kDefaultScheme = @"AdjustUniversalScheme";
Expand Down Expand Up @@ -1191,7 +1191,7 @@ + (int)attStatus {
NSMethodSignature *msAuthorization = [appTrackingClass methodSignatureForSelector:selAuthorization];
NSInvocation *invAuthorization = [NSInvocation invocationWithMethodSignature:msAuthorization];
[invAuthorization setSelector:selAuthorization];
[invAuthorization invokeWithTarget:appTrackingClass];
[invAuthorization setTarget:appTrackingClass];
[invAuthorization invoke];
NSUInteger status;
[invAuthorization getReturnValue:&status];
Expand Down Expand Up @@ -1431,9 +1431,10 @@ + (NSMutableDictionary *)deepCopyOfDictionary:(NSMutableDictionary *)dictionary
return nil;
}

NSMutableDictionary *deepCopy = (__bridge NSMutableDictionary *)CFPropertyListCreateDeepCopy(NULL,
(__bridge CFDictionaryRef)dictionary,
kCFPropertyListMutableContainersAndLeaves);
NSMutableDictionary *deepCopy =
(NSMutableDictionary *)CFBridgingRelease(CFPropertyListCreateDeepCopy(kCFAllocatorDefault,
(CFDictionaryRef)dictionary,
kCFPropertyListMutableContainersAndLeaves));
return deepCopy;
}

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.33.5
// V4.33.6
// 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 @@ -275,7 +275,7 @@ + (NSString *)adjust_js {
if (this.sdkPrefix) {
return this.sdkPrefix;
} else {
return 'web-bridge4.33.5';
return 'web-bridge4.33.6';
}
},
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.33.6 (25th July 2023)
#### Fixed
- Fixed memory leak occurrences when tracking events (https://github.com/adjust/ios_sdk/issues/668).

---

### Version 4.33.5 (13th July 2023)
#### Changed
- Replaced the usage of `drand48()` with `arc4random_uniform` method.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.33.5
4.33.6
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,13 @@
ReferencedContainer = "container:AdjustExample-ObjC.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
<AdditionalOptions>
<AdditionalOption
key = "MallocScribble"
value = ""
isEnabled = "YES">
</AdditionalOption>
</AdditionalOptions>
</LaunchAction>
<ProfileAction
buildConfiguration = "Release"
Expand Down
8 changes: 4 additions & 4 deletions examples/AdjustExample-Swift/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PODS:
- Adjust (4.33.5):
- Adjust/Core (= 4.33.5)
- Adjust/Core (4.33.5)
- Adjust (4.33.6):
- Adjust/Core (= 4.33.6)
- Adjust/Core (4.33.6)

DEPENDENCIES:
- Adjust (from `../../`)
Expand All @@ -11,7 +11,7 @@ EXTERNAL SOURCES:
:path: "../../"

SPEC CHECKSUMS:
Adjust: 4690e07ea401ee56d4d3f4f5bdad86c94f51903f
Adjust: c3b6c3734928a617fefce81dc223fd5f104162be

PODFILE CHECKSUM: 4c79da456db9adb90cdd42adc7f721c7bb6490cd

Expand Down

0 comments on commit 76c9552

Please sign in to comment.