Skip to content

Commit 5d7cd5a

Browse files
committed
Update version to 3.1.0
1 parent e168da6 commit 5d7cd5a

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
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 = "3.0.0"
3+
s.version = "3.1.0"
44
s.summary = "This is the iOS SDK of Adjust. You can read more about it at http://adjust.io."
55
s.homepage = "http://adjust.io"
66
s.license = { :type => 'MIT', :file => 'MIT-LICENSE' }
77
s.author = { "Christian Wellenbrock" => "[email protected]" }
8-
s.source = { :git => "https://github.com/adeven/adjust_ios_sdk.git", :tag => "v3.0.0" }
8+
s.source = { :git => "https://github.com/adeven/adjust_ios_sdk.git", :tag => "v3.1.0" }
99
s.platform = :ios, '4.3'
1010
s.framework = 'AdSupport', 'SystemConfiguration'
1111
s.source_files = 'Adjust/*.{h,m}', 'Adjust/AIAdditions/*.{h,m}'

Adjust/AIUtil.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
#include <sys/xattr.h>
1515

1616
static NSString * const kBaseUrl = @"https://app.adjust.io";
17-
static NSString * const kClientSdk = @"ios3.0.0";
17+
static NSString * const kClientSdk = @"ios3.1.0";
1818

1919

2020
#pragma mark -

AdjustTests/AIActivityHandlerTests.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ - (void)testFirstRun
8686
AIActivityPackage *activityPackage = (AIActivityPackage *) self.packageHandlerMock.packageQueue[0];
8787

8888
// check the Sdk version is being tested
89-
XCTAssertEqual(@"ios3.0.0", activityPackage.clientSdk, @"%@", activityPackage.extendedString);
89+
XCTAssertEqual(@"ios3.1.0", activityPackage.clientSdk, @"%@", activityPackage.extendedString);
9090

9191
// packageType should be SESSION_START
9292
XCTAssertEqual(@"/startup", activityPackage.path, @"%@", activityPackage.extendedString);

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ If you're using [CocoaPods][cocoapods], you can add the following line to your
1313
`Podfile` and continue with [step 3](#step3):
1414

1515
```ruby
16-
pod 'Adjust', :git => 'git://github.com/adeven/adjust_ios_sdk.git', :tag => 'v3.0.0'
16+
pod 'Adjust', :git => 'git://github.com/adeven/adjust_ios_sdk.git', :tag => 'v3.1.0'
1717
```
1818

1919
### 1. Get the SDK

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.0
1+
3.1.0

0 commit comments

Comments
 (0)