Skip to content

Commit

Permalink
1.6.22
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Korney committed Oct 2, 2024
1 parent 7d2ee41 commit fdd6f82
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 17 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## [1.6.22] - 2024-10-02

### Added

- Module `Subscription` StoreKit2 support.

### Changed

- Update native iOS to [`1.6.41`](https://github.com/affise/sdk-ios/blob/1.6.41/CHANGELOG.md).

## [1.6.21] - 2024-09-06

### Added
Expand Down Expand Up @@ -141,6 +151,7 @@
- Api `Affise.android.getReferrer` to `Affise.getReferrer`
- Api `Affise.android.getReferrerValue` to `Affise.getReferrerValue`

[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
[1.6.19]: https://github.com/affise/flutter-sdk/compare/1.6.18...1.6.19
Expand Down
18 changes: 9 additions & 9 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.21`](https://github.com/affise/sdk-react/releases) |
| `affise_attribution_lib` | [`1.6.22`](https://github.com/affise/sdk-react/releases) |

- [Affise Attribution Flutter Library](#affise-attribution-flutter-library)
- [Description](#description)
Expand Down Expand Up @@ -147,10 +147,10 @@ Add modules to iOS project

| Module | Version | Start |
|----------------|:------------------------------------------------------------------------------------:|----------|
| `ADVERTISING` | [`1.6.40`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Manual` |
| `LINK` | [`1.6.40`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` |
| `STATUS` | [`1.6.40`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` |
| `SUBSCRIPTION` | [`1.6.40`](https://github.com/CocoaPods/Specs/tree/master/Specs/0/3/d/AffiseModule/) | `Auto` |
| `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` |

Example [example/ios/Podfile](example/ios/Podfile)

Expand All @@ -159,10 +159,10 @@ target 'Runner' do
# ...

# Affise Modules
pod 'AffiseModule/Advertising', `1.6.40`
pod 'AffiseModule/Link', `1.6.40`
pod 'AffiseModule/Status', `1.6.40`
pod 'AffiseModule/Subscription', `1.6.40`
pod 'AffiseModule/Advertising', `1.6.41`
pod 'AffiseModule/Link', `1.6.41`
pod 'AffiseModule/Status', `1.6.41`
pod 'AffiseModule/Subscription', `1.6.41`
end
```

Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group 'com.affise.attribution.affise_attribution_lib'
version '1.6.21'
version '1.6.22'

buildscript {
ext.kotlin_version = '1.7.10'
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.40'
pod 'AffiseModule/Status', '1.6.40'
pod 'AffiseModule/Link', '1.6.40'
pod 'AffiseModule/Subscription', '1.6.40'
pod 'AffiseModule/Advertising', '1.6.41'
pod 'AffiseModule/Status', '1.6.41'
pod 'AffiseModule/Link', '1.6.41'
pod 'AffiseModule/Subscription', '1.6.41'
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.21"
version: "1.6.22"
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.40'
s.dependency 'AffiseInternal', '1.6.41'

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.21
version: 1.6.22
homepage: https://affise.com/

environment:
Expand Down

0 comments on commit fdd6f82

Please sign in to comment.