Skip to content

Commit

Permalink
New version 4.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
uerceg committed Nov 8, 2018
1 parent 06c1c85 commit e2aa7b7
Show file tree
Hide file tree
Showing 14 changed files with 16 additions and 16 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.15.0"
s.version = "4.16.0"
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 = { "Christian Wellenbrock" => "welle@adjust.com" }
s.source = { :git => "https://github.com/adjust/ios_sdk.git", :tag => "v4.15.0" }
s.source = { :git => "https://github.com/adjust/ios_sdk.git", :tag => "v4.16.0" }
s.ios.deployment_target = '6.0'
s.tvos.deployment_target = '9.0'
s.framework = 'SystemConfiguration'
Expand Down
2 changes: 1 addition & 1 deletion Adjust/ADJUtil.m
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
static CTTelephonyNetworkInfo *networkInfo = nil;
#endif

static NSString * const kClientSdk = @"ios4.15.0";
static NSString * const kClientSdk = @"ios4.16.0";
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
//
// V4.15.0
// V4.16.0
// Created by Christian Wellenbrock (wellle) on 23rd July 2013.
// Copyright © 2012-2017 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 @@ -264,7 +264,7 @@ + (NSString *)adjust_js {
}
}

this.sdkPrefix = 'web-bridge4.15.0';
this.sdkPrefix = 'web-bridge4.16.0';
this.defaultTracker = null;
this.logLevel = null;
this.eventBufferingEnabled = null;
Expand Down
2 changes: 1 addition & 1 deletion AdjustTests/AdjustTestApp/AdjustTestApp/ViewController.m
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ - (void)viewDidLoad {
}

- (void)startTestSession {
[self.testLibrary startTestSession:@"ios4.15.0"];
[self.testLibrary startTestSession:@"ios4.16.0"];
}

- (void)didReceiveMemoryWarning {
Expand Down
2 changes: 1 addition & 1 deletion AdjustTests/AdjustUnitTests/ADJPackageFields.m
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ - (id) init {

// default values
self.appToken = @"qwerty123456";
self.clientSdk = @"ios4.15.0";
self.clientSdk = @"ios4.16.0";
self.suffix = @"";
self.environment = @"sandbox";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ - (id)initWithAdjustBridgeRegister:(AdjustBridgeRegister *)adjustBridgeRegister
NSLog(@"TestLibraryBridge adjustTLB_startTestSession");
// self.commandExecutorCallback = responseCallback;
[self.adjustBridgeRegister callHandler:@"adjustjs_commandExecutor" data:@"test"];
[self.testLibrary startTestSession:@"web-bridge4.15.0@ios4.15.0"];
[self.testLibrary startTestSession:@"web-bridge4.16.0@ios4.16.0"];
}];

[adjustBridgeRegister registerHandler:@"adjustTLB_addInfoToSend" handler:^(id data, WVJBResponseCallback responseCallback) {
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,13 @@ We will describe the steps to integrate the Adjust SDK into your iOS project. We
If you're using [CocoaPods][cocoapods], you can add the following line to your `Podfile` and continue from [this step](#sdk-integrate):

```ruby
pod 'Adjust', '~> 4.15.0'
pod 'Adjust', '~> 4.16.0'
```

or:

```ruby
pod 'Adjust', :git => 'https://github.com/adjust/ios_sdk.git', :tag => 'v4.15.0'
pod 'Adjust', :git => 'https://github.com/adjust/ios_sdk.git', :tag => 'v4.16.0'
```

---
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.15.0
4.16.0
2 changes: 1 addition & 1 deletion doc/english/migrate.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Migrate your adjust SDK for iOS to v4.15.0 from v3.4.0
## Migrate your adjust SDK for iOS to v4.16.0 from v3.4.0

### Initial setup

Expand Down
2 changes: 1 addition & 1 deletion doc/english/web_view_migration.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Migrate your Adjust web bridge SDK to v4.15.0 or later from v4.9.1 or earlier
## Migrate your Adjust web bridge SDK to v4.16.0 or later from v4.9.1 or earlier

### Integration

Expand Down
2 changes: 1 addition & 1 deletion doc/english/web_views.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ We will describe the steps to integrate the Adjust SDK into your iOS project. We
If you're using [CocoaPods][cocoapods], you can add the following line to your `Podfile` and continue from [this step](#sdk-integrate):

```ruby
pod 'Adjust/WebBridge', '~> 4.15.0'
pod 'Adjust/WebBridge', '~> 4.16.0'
```

---
Expand Down
2 changes: 1 addition & 1 deletion doc/japanese/migrate_ja.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## iOS用adjust SDKのv3.4.0からv4.15.0への移行
## iOS用adjust SDKのv3.4.0からv4.16.0への移行

### 初期設定

Expand Down
2 changes: 1 addition & 1 deletion doc/migrate.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Migrate your adjust SDK for iOS to v4.15.0 from v3.4.0
## Migrate your adjust SDK for iOS to v4.16.0 from v3.4.0

### Initial setup

Expand Down

0 comments on commit e2aa7b7

Please sign in to comment.