Skip to content

Commit

Permalink
1.6.23
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Korney committed Oct 8, 2024
1 parent fdd6f82 commit eb4c7bc
Show file tree
Hide file tree
Showing 8 changed files with 38 additions and 26 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down
32 changes: 16 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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'
}
```

Expand All @@ -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)

Expand All @@ -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
```

Expand Down
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
8 changes: 4 additions & 4 deletions example/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -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|
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ packages:
path: ".."
relative: true
source: path
version: "1.6.22"
version: "1.6.23"
async:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion ios/affise_attribution_lib.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down

0 comments on commit eb4c7bc

Please sign in to comment.