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 8, 2024
1 parent 91d0918 commit 0394211
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 18 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.22] - 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.21] - 2024-10-02

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

[1.6.22]: https://github.com/affise/sdk-react/compare/1.6.21...1.6.22
[1.6.21]: https://github.com/affise/sdk-react/compare/1.6.20...1.6.21
[1.6.20]: https://github.com/affise/sdk-react/compare/1.6.19...1.6.20
[1.6.19]: https://github.com/affise/sdk-react/compare/1.6.18...1.6.19
Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ Add modules to Android project
Example [`example/android/app/build.gradle`](example/android/app/build.gradle)

```gradle
final affise_version = '1.6.44'
final affise_version = '1.6.45'
dependencies {
// Affise modules
Expand All @@ -144,7 +144,7 @@ dependencies {
implementation "com.affise:module-network:$affise_version"
implementation "com.affise:module-phone:$affise_version"
implementation "com.affise:module-status:$affise_version"
implementation 'com.affise:module-subscription:1.6.44'
implementation 'com.affise:module-subscription:1.6.45'
}
```

Expand All @@ -154,10 +154,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 @@ -166,10 +166,10 @@ target 'YourAppProject' 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
2 changes: 1 addition & 1 deletion affise-attribution-native.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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.41'
s.dependency 'AffiseInternal', '1.6.42'

# Don't install the dependencies when we run `pod install` in the old architecture.
if ENV['RCT_NEW_ARCH_ENABLED'] == '1' then
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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.44'
affise_version = '1.6.45'
agp_version = '7.2.2'
}

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 @@ -248,7 +248,7 @@ android {
}
}

final affise_version = '1.6.44'
final affise_version = '1.6.45'

dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
Expand Down
8 changes: 4 additions & 4 deletions example/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ target 'AffiseAttributionLibExample' do
)

# 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'

target 'AffiseAttributionLibExampleTests' do
inherit! :complete
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "affise-attribution-lib",
"version": "1.6.21",
"version": "1.6.22",
"description": "Affise Attribution Library",
"main": "lib/commonjs/index",
"module": "lib/module/index",
Expand Down

0 comments on commit 0394211

Please sign in to comment.