From 34bf1df19c543b0b49438d94150d69a20a5f1fec Mon Sep 17 00:00:00 2001 From: Jimmy Devine Date: Wed, 4 Oct 2017 14:24:59 -0400 Subject: [PATCH 1/4] Adds react to podspec so that use_frameworks! Podfiles will work --- react-native-adjust.podspec | 1 + 1 file changed, 1 insertion(+) diff --git a/react-native-adjust.podspec b/react-native-adjust.podspec index 0cdacf20..844022c7 100644 --- a/react-native-adjust.podspec +++ b/react-native-adjust.podspec @@ -19,4 +19,5 @@ Pod::Spec.new do |s| s.source_files = 'ios/*.{h,m}' s.dependency 'Adjust', '~> 4.11.4' + s.dependency 'React' end From 3ec9e389b8cbe216e0b37f133ae3a9cd1f8bd2cb Mon Sep 17 00:00:00 2001 From: uerceg Date: Thu, 5 Oct 2017 10:39:27 +0200 Subject: [PATCH 2/4] Adjust pod dependency version update --- react-native-adjust.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react-native-adjust.podspec b/react-native-adjust.podspec index 844022c7..42c5b23e 100644 --- a/react-native-adjust.podspec +++ b/react-native-adjust.podspec @@ -18,6 +18,6 @@ Pod::Spec.new do |s| s.preserve_paths = 'LICENSE', 'README.md', 'package.json', 'index.js' s.source_files = 'ios/*.{h,m}' - s.dependency 'Adjust', '~> 4.11.4' + s.dependency 'Adjust', '~> 4.11.5' s.dependency 'React' end From 57d785b5760947277de6d403dc319173cadf431e Mon Sep 17 00:00:00 2001 From: uerceg Date: Thu, 5 Oct 2017 10:42:49 +0200 Subject: [PATCH 3/4] New version 4.11.7 --- VERSION | 2 +- index.js | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/VERSION b/VERSION index ebd9d93f..3631b26f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.11.6 +4.11.7 diff --git a/index.js b/index.js index cce24f83..005885a1 100755 --- a/index.js +++ b/index.js @@ -111,7 +111,7 @@ var AdjustConfig = function(appToken, environment) { this.appToken = appToken; this.environment = environment; - this.sdkPrefix = "react_native4.11.6"; + this.sdkPrefix = "react_native4.11.7"; this.logLevel = null; this.eventBufferingEnabled = null; diff --git a/package.json b/package.json index f52ccaac..1d701f0f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "react-native-adjust", "description": "Adjust React Native SDK", - "version": "4.11.6", + "version": "4.11.7", "main": "index.js", "author": "adjust GmbH", "license": "MIT", From 1c315c6c55f8346404fa3c7100cf365c8c43892a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Uglje=C5=A1a=20Erceg?= Date: Thu, 5 Oct 2017 10:47:27 +0200 Subject: [PATCH 4/4] Update CHANGELOG.md --- CHANGELOG.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f15a9b7b..e2fbf2e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +### Version 4.11.7 (5th October 2017) +#### Added +- **[iOS]** Added support for `use_frameworks!` option in `Podfile` (thanks to @jimmy-devine). + +#### Changed +- **[iOS]** Updated Adjust pod version to `4.11.5` in `react-native-adjust.podspec`. + +#### Native SDKs +- **[iOS]** [iOS@v4.11.5][ios_sdk_v4.11.5] +- **[AND]** [Android@v4.11.4][android_sdk_v4.11.4] + +--- + ### Version 4.11.6 (28th September 2017) #### Added - **[iOS]** Improved iOS 11 support.