From 90484f47ed20dc302b0c5867393d4156314cef25 Mon Sep 17 00:00:00 2001 From: Sergey Korney Date: Wed, 31 Jul 2024 18:07:43 +0500 Subject: [PATCH] 1.6.18 --- CHANGELOG.md | 17 +++++++++++++++++ README.md | 18 +++++++++--------- affise-attribution-native.podspec | 2 +- android/build.gradle | 2 +- example/android/app/build.gradle | 2 +- example/ios/Podfile | 6 +++--- package.json | 2 +- 7 files changed, 33 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 954cca1..6826ab4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [1.6.18] - 2024-07-31 + +### Added + +- Modules compatibility check. + +### Fixed + +- Api `Affise.Module.getStatus`. + +### Changed + +- Update native iOS to [`1.6.36`](https://github.com/affise/sdk-ios/blob/1.6.36/CHANGELOG.md). +- Update native Android to [`1.6.40`](https://github.com/affise/sdk-android/blob/v1.6.40/CHANGELOG.md). + ## [1.6.17] - 2024-07-11 ### Added @@ -83,6 +98,8 @@ - Api `Affise.android.getReferrer` to `Affise.getReferrer` - Api `Affise.android.getReferrerValue` to `Affise.getReferrerValue` +[1.6.18]: https://github.com/affise/sdk-react/compare/1.6.17...1.6.18 +[1.6.17]: https://github.com/affise/sdk-react/compare/1.6.16...1.6.17 [1.6.16]: https://github.com/affise/sdk-react/compare/1.6.15...1.6.16 [1.6.15]: https://github.com/affise/sdk-react/compare/1.6.14...1.6.15 [1.6.14]: https://github.com/affise/sdk-react/compare/1.6.13...1.6.14 diff --git a/README.md b/README.md index 2ec6956..ab93a39 100644 --- a/README.md +++ b/README.md @@ -48,8 +48,8 @@ - [Android](#android-2) - [iOS](#ios-2) - [AppLinks](#applinks) - - [Android](#android-3) - - [iOS](#ios-3) + - [Android](#android-3) + - [iOS](#ios-3) - [Offline mode](#offline-mode) - [Disable tracking](#disable-tracking) - [Disable background tracking](#disable-background-tracking) @@ -127,7 +127,7 @@ Add modules to Android project Example [`example/android/app/build.gradle`](example/android/app/build.gradle) ```gradle -final affise_version = '1.6.38' +final affise_version = '1.6.40' dependencies { // Affise modules @@ -146,9 +146,9 @@ Add modules to iOS project | Module | Version | Start | |---------------|:------------------------------------------------------------------------------------:|----------| -| `ADVERTISING` | [`1.6.33`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Manual` | -| `LINK` | [`1.6.33`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` | -| `STATUS` | [`1.6.33`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` | +| `ADVERTISING` | [`1.6.36`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Manual` | +| `LINK` | [`1.6.36`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` | +| `STATUS` | [`1.6.36`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` | Example [example/ios/Podfile](example/ios/Podfile) @@ -157,9 +157,9 @@ target 'YourAppProject' do # ... # Affise Modules - pod 'AffiseModule/Advertising', `1.6.33` - pod 'AffiseModule/Link', `1.6.33` - pod 'AffiseModule/Status', `1.6.33` + pod 'AffiseModule/Advertising', `1.6.36` + pod 'AffiseModule/Link', `1.6.36` + pod 'AffiseModule/Status', `1.6.36` end ``` diff --git a/affise-attribution-native.podspec b/affise-attribution-native.podspec index 2d57e29..2a5eba2 100644 --- a/affise-attribution-native.podspec +++ b/affise-attribution-native.podspec @@ -17,7 +17,7 @@ Pod::Spec.new do |s| s.source_files = "ios/**/*.{h,m,mm,swift}" s.dependency "React-Core" - s.dependency 'AffiseInternal', '1.6.33' + s.dependency 'AffiseInternal', '1.6.36' # Don't install the dependencies when we run `pod install` in the old architecture. if ENV['RCT_NEW_ARCH_ENABLED'] == '1' then diff --git a/android/build.gradle b/android/build.gradle index 0357e5d..1c12c78 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -2,7 +2,7 @@ buildscript { // Buildscript is evaluated before everything else so we can't use getExtOrDefault def kotlin_version = rootProject.ext.has("kotlinVersion") ? rootProject.ext.get("kotlinVersion") : project.properties["AffiseAttributionNative_kotlinVersion"] ext { - affise_version = '1.6.38' + affise_version = '1.6.40' agp_version = '7.2.2' } diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle index 79e627b..9894c14 100644 --- a/example/android/app/build.gradle +++ b/example/android/app/build.gradle @@ -248,7 +248,7 @@ android { } } -final affise_version = '1.6.38' +final affise_version = '1.6.40' dependencies { implementation fileTree(dir: "libs", include: ["*.jar"]) diff --git a/example/ios/Podfile b/example/ios/Podfile index 61c9d00..6fed6db 100644 --- a/example/ios/Podfile +++ b/example/ios/Podfile @@ -27,9 +27,9 @@ target 'AffiseAttributionLibExample' do ) # Affise Modules - pod 'AffiseModule/Advertising', '1.6.33' - pod 'AffiseModule/Status', '1.6.33' - pod 'AffiseModule/Link', '1.6.33' + pod 'AffiseModule/Advertising', '1.6.36' + pod 'AffiseModule/Status', '1.6.36' + pod 'AffiseModule/Link', '1.6.36' target 'AffiseAttributionLibExampleTests' do inherit! :complete diff --git a/package.json b/package.json index f364e28..82b3783 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "affise-attribution-lib", - "version": "1.6.17", + "version": "1.6.18", "description": "Affise Attribution Library", "main": "lib/commonjs/index", "module": "lib/module/index",