Skip to content

Commit 7d6fe83

Browse files
authored
Merge pull request #493 from adjust/v4251
Version 4.25.1
2 parents ddf1824 + fe29da2 commit 7d6fe83

File tree

16 files changed

+26
-19
lines changed

16 files changed

+26
-19
lines changed

Adjust.podspec

Lines changed: 2 additions & 2 deletions
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.25.0"
3+
s.version = "4.25.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 = { "Christian Wellenbrock" => "[email protected]" }
8-
s.source = { :git => "https://github.com/adjust/ios_sdk.git", :tag => "v4.25.0" }
8+
s.source = { :git => "https://github.com/adjust/ios_sdk.git", :tag => "v4.25.1" }
99
s.ios.deployment_target = '6.0'
1010
s.tvos.deployment_target = '9.0'
1111
s.framework = 'SystemConfiguration'

Adjust/ADJUtil.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
static CTTelephonyNetworkInfo *networkInfo = nil;
3838
#endif
3939

40-
static NSString * const kClientSdk = @"ios4.25.0";
40+
static NSString * const kClientSdk = @"ios4.25.1";
4141
static NSString * const kDeeplinkParam = @"deep_link=";
4242
static NSString * const kSchemeDelimiter = @"://";
4343
static NSString * const kDefaultScheme = @"AdjustUniversalScheme";

Adjust/Adjust.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// Adjust.h
33
// Adjust
44
//
5-
// V4.25.0
5+
// V4.25.1
66
// Created by Christian Wellenbrock (wellle) on 23rd July 2013.
77
// Copyright © 2012-2017 Adjust GmbH. All rights reserved.
88
//
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../ADJThirdPartySharing.h

AdjustBridge/AdjustBridgeRegister.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ + (NSString *)adjust_js {
241241
if (this.sdkPrefix) {
242242
return this.sdkPrefix;
243243
} else {
244-
return 'web-bridge4.25.0';
244+
return 'web-bridge4.25.1';
245245
}
246246
},
247247
setTestOptions: function(testOptions) {

AdjustTests/AdjustUnitTests/ADJPackageFields.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ - (id) init {
1616

1717
// default values
1818
self.appToken = @"qwerty123456";
19-
self.clientSdk = @"ios4.25.0";
19+
self.clientSdk = @"ios4.25.1";
2020
self.suffix = @"";
2121
self.environment = @"sandbox";
2222

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### Version 4.25.1 (18th January 2021)
2+
#### Fixed
3+
- Fixed missing header error for SPM users from v4.25.0.
4+
5+
---
6+
17
### Version 4.25.0 (16th January 2021)
28
#### Added
39
- Added support for Apple Search Ads attribution with usage of `AdServices.framework`.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,13 @@ We will describe the steps to integrate the Adjust SDK into your iOS project. We
7979
If you're using [CocoaPods][cocoapods], you can add the following line to your `Podfile` and continue from [this step](#sdk-integrate):
8080

8181
```ruby
82-
pod 'Adjust', '~> 4.25.0'
82+
pod 'Adjust', '~> 4.25.1'
8383
```
8484

8585
or:
8686

8787
```ruby
88-
pod 'Adjust', :git => 'https://github.com/adjust/ios_sdk.git', :tag => 'v4.25.0'
88+
pod 'Adjust', :git => 'https://github.com/adjust/ios_sdk.git', :tag => 'v4.25.1'
8989
```
9090

9191
---

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.25.0
1+
4.25.1

doc/chinese/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,13 @@ Read this in other languages: [English][en-readme], [中文][zh-readme], [日本
7676
如果您正在使用[CocoaPods][cocoapods],您可以将以下代码行添加至 `Podfile`,然后继续进行[此步骤](#sdk-integrate):
7777

7878
```ruby
79-
pod 'Adjust', '~> 4.25.0'
79+
pod 'Adjust', '~> 4.25.1'
8080
```
8181

8282
或:
8383

8484
```ruby
85-
pod 'Adjust', :git => 'https://github.com/adjust/ios_sdk.git', :tag => 'v4.25.0'
85+
pod 'Adjust', :git => 'https://github.com/adjust/ios_sdk.git', :tag => 'v4.25.1'
8686
```
8787

8888
---

0 commit comments

Comments
 (0)