diff --git a/CHANGELOG.md b/CHANGELOG.md index ecc77ac..490ab9c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [1.6.23] - 2024-10-08 + +### Fixed + +- Fix `Affise.module.getStatus` timing retry. + +### Changed + +- Update native iOS to [`1.6.42`](https://github.com/affise/sdk-ios/blob/1.6.42/CHANGELOG.md). +- Update native Android to [`1.6.45`](https://github.com/affise/sdk-android/blob/v1.6.45/CHANGELOG.md). + ## [1.6.22] - 2024-10-02 ### Added @@ -151,6 +162,7 @@ - Api `Affise.android.getReferrer` to `Affise.getReferrer` - Api `Affise.android.getReferrerValue` to `Affise.getReferrerValue` +[1.6.23]: https://github.com/affise/flutter-sdk/compare/1.6.22...1.6.23 [1.6.22]: https://github.com/affise/flutter-sdk/compare/1.6.21...1.6.22 [1.6.21]: https://github.com/affise/flutter-sdk/compare/1.6.20...1.6.21 [1.6.20]: https://github.com/affise/flutter-sdk/compare/1.6.19...1.6.20 diff --git a/README.md b/README.md index 7f1bc86..c094fb1 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ | Package | Version | |--------------------------|:--------------------------------------------------------:| -| `affise_attribution_lib` | [`1.6.22`](https://github.com/affise/sdk-react/releases) | +| `affise_attribution_lib` | [`1.6.23`](https://github.com/affise/sdk-react/releases) | - [Affise Attribution Flutter Library](#affise-attribution-flutter-library) - [Description](#description) @@ -131,13 +131,13 @@ Example [`example/android/app/build.gradle`](example/android/app/build.gradle) ```gradle dependencies { // Affise modules - implementation 'com.affise:module-advertising:1.6.44' - implementation 'com.affise:module-androidid:1.6.44' - implementation 'com.affise:module-link:1.6.44' - implementation 'com.affise:module-network:1.6.44' - implementation 'com.affise:module-phone:1.6.44' - implementation 'com.affise:module-status:1.6.44' - implementation 'com.affise:module-subscription:1.6.44' + implementation 'com.affise:module-advertising:1.6.45' + implementation 'com.affise:module-androidid:1.6.45' + implementation 'com.affise:module-link:1.6.45' + implementation 'com.affise:module-network:1.6.45' + implementation 'com.affise:module-phone:1.6.45' + implementation 'com.affise:module-status:1.6.45' + implementation 'com.affise:module-subscription:1.6.45' } ``` @@ -147,10 +147,10 @@ Add modules to iOS project | Module | Version | Start | |----------------|:------------------------------------------------------------------------------------:|----------| -| `ADVERTISING` | [`1.6.41`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Manual` | -| `LINK` | [`1.6.41`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` | -| `STATUS` | [`1.6.41`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` | -| `SUBSCRIPTION` | [`1.6.41`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` | +| `ADVERTISING` | [`1.6.42`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Manual` | +| `LINK` | [`1.6.42`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` | +| `STATUS` | [`1.6.42`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` | +| `SUBSCRIPTION` | [`1.6.42`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` | Example [example/ios/Podfile](example/ios/Podfile) @@ -159,10 +159,10 @@ target 'Runner' do # ... # Affise Modules - pod 'AffiseModule/Advertising', `1.6.41` - pod 'AffiseModule/Link', `1.6.41` - pod 'AffiseModule/Status', `1.6.41` - pod 'AffiseModule/Subscription', `1.6.41` + pod 'AffiseModule/Advertising', `1.6.42` + pod 'AffiseModule/Link', `1.6.42` + pod 'AffiseModule/Status', `1.6.42` + pod 'AffiseModule/Subscription', `1.6.42` end ``` diff --git a/android/build.gradle b/android/build.gradle index e1bed4d..2a12796 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -1,9 +1,9 @@ group 'com.affise.attribution.affise_attribution_lib' -version '1.6.22' +version '1.6.23' buildscript { ext.kotlin_version = '1.7.10' - ext.affise_version = '1.6.44' + ext.affise_version = '1.6.45' ext.agp_version = '7.2.1' repositories { diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle index 35c2312..21dfa54 100644 --- a/example/android/app/build.gradle +++ b/example/android/app/build.gradle @@ -65,7 +65,7 @@ flutter { source '../..' } -final affise_version = '1.6.44' +final affise_version = '1.6.45' dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" diff --git a/example/ios/Podfile b/example/ios/Podfile index ec977f1..b6add2b 100644 --- a/example/ios/Podfile +++ b/example/ios/Podfile @@ -34,10 +34,10 @@ target 'Runner' do flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) # Affise modules - pod 'AffiseModule/Advertising', '1.6.41' - pod 'AffiseModule/Status', '1.6.41' - pod 'AffiseModule/Link', '1.6.41' - pod 'AffiseModule/Subscription', '1.6.41' + pod 'AffiseModule/Advertising', '1.6.42' + pod 'AffiseModule/Status', '1.6.42' + pod 'AffiseModule/Link', '1.6.42' + pod 'AffiseModule/Subscription', '1.6.42' end post_install do |installer| diff --git a/example/pubspec.lock b/example/pubspec.lock index 5f4263a..c423346 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -7,7 +7,7 @@ packages: path: ".." relative: true source: path - version: "1.6.22" + version: "1.6.23" async: dependency: transitive description: diff --git a/ios/affise_attribution_lib.podspec b/ios/affise_attribution_lib.podspec index 6756958..2bd8c5a 100644 --- a/ios/affise_attribution_lib.podspec +++ b/ios/affise_attribution_lib.podspec @@ -21,6 +21,6 @@ Affise Attribution Flutter plugin. s.swift_version = '5.0' s.dependency 'Flutter' - s.dependency 'AffiseInternal', '1.6.41' + s.dependency 'AffiseInternal', '1.6.42' end diff --git a/pubspec.yaml b/pubspec.yaml index 15bf3b0..ab6d50f 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: affise_attribution_lib description: Affise Attribution Flutter plugin. -version: 1.6.22 +version: 1.6.23 homepage: https://affise.com/ environment: