Skip to content

Commit 4715d57

Browse files
authored
Merge pull request #4 from reclaimprotocol/pre_0.7.0
Update inapp module and add startVerificationFromUrl in frontend api …
2 parents 780fbbd + edd3a62 commit 4715d57

File tree

16 files changed

+39
-12
lines changed

16 files changed

+39
-12
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.7.0
2+
3+
* Updates inapp module dependency to 0.7.0
4+
15
## 0.6.0
26

37
* Update claim creation updates UI

InappRnSdk.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
1717

1818
s.source_files = "ios/**/*.{h,m,mm,cpp,swift}"
1919
s.private_header_files = "ios/generated/**/*.h"
20-
s.dependency "ReclaimInAppSdk", "~> 0.6.0"
20+
s.dependency "ReclaimInAppSdk", "~> 0.7.0"
2121

2222
# Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0.
2323
# See https://github.com/facebook/react-native/blob/febf6b7f33fdb4904669f99d795eba4c0f95d7bf/scripts/cocoapods/new_architecture.rb#L79.

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,13 +110,13 @@ Ignore if you already have this declaration in your `Podfile`.
110110

111111
```ruby
112112
# Cocoapods is the recommended way to install the SDK.
113-
pod 'ReclaimInAppSdk', '~> 0.6.0'
113+
pod 'ReclaimInAppSdk', '~> 0.7.0'
114114
```
115115

116116
##### From a specific tag
117117

118118
```ruby
119-
pod 'ReclaimInAppSdk', :git => 'https://github.com/reclaimprotocol/reclaim-inapp-ios-sdk.git', :tag => '0.6.0'
119+
pod 'ReclaimInAppSdk', :git => 'https://github.com/reclaimprotocol/reclaim-inapp-ios-sdk.git', :tag => '0.7.0'
120120
```
121121

122122
##### From git HEAD
@@ -153,7 +153,7 @@ target 'InappRnSdkExample' do
153153
)
154154

155155
# This is the line that you may need to add in your podfile.
156-
pod 'ReclaimInAppSdk', '~> 0.6.0'
156+
pod 'ReclaimInAppSdk', '~> 0.7.0'
157157

158158
pre_install do |installer|
159159
system("cd ../../ && npx bob build --target codegen")
@@ -292,6 +292,7 @@ error.innerError
292292
293293
## Migration
294294
295+
- Migration steps for [0.7.0](https://github.com/reclaimprotocol/reclaim-inapp-reactnative-sdk/blob/main/documentation/migration.md#070)
295296
- Migration steps for [0.6.0](https://github.com/reclaimprotocol/reclaim-inapp-reactnative-sdk/blob/main/documentation/migration.md#060)
296297
- Migration steps for [0.3.1](https://github.com/reclaimprotocol/reclaim-inapp-reactnative-sdk/blob/main/documentation/migration.md#031)
297298
- Migration steps for [0.3.0](https://github.com/reclaimprotocol/reclaim-inapp-reactnative-sdk/blob/main/documentation/migration.md#030)

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ dependencies {
118118
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
119119

120120
//noinspection UseTomlInstead
121-
implementation "org.reclaimprotocol:inapp_sdk:0.6.0"
121+
implementation "org.reclaimprotocol:inapp_sdk:0.7.0"
122122
}
123123

124124
if (isNewArchitectureEnabled()) {

documentation/migration.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Migration
22

3+
## 0.7.0
4+
5+
### iOS
6+
7+
- Make sure if you are using the latest versions of `ReclaimInAppSdk` cocoapod if you have overriden this dependency in your `Podfile`. Latest version on [cocoapods.org is 0.7.0](https://cocoapods.org/pods/ReclaimInAppSdk).
8+
- Run a `pod install --repo-update`. If this fails for reasons related to the `ReclaimInAppSdk`, try running `pod update ReclaimInAppSdk`.
9+
- Refer: https://github.com/reclaimprotocol/reclaim-inapp-reactnative-sdk/blob/main/README.md#ios-setup
10+
311
## 0.6.0
412

513
### Android
@@ -33,7 +41,7 @@ dependencyResolutionManagement {
3341

3442
### iOS
3543

36-
- Make sure if you are using the latest versions of `ReclaimInAppSdk` cocoapod if you have overriden this dependency in your `Podfile`. Latest version on [cocoapods.org is 0.6.0](https://cocoapods.org/pods/ReclaimInAppSdk).
44+
- Make sure if you are using the latest versions of `ReclaimInAppSdk` cocoapod if you have overriden this dependency in your `Podfile`.
3745
- Run a `pod install --repo-update`. If this fails for reasons related to the `ReclaimInAppSdk`, try running `pod update ReclaimInAppSdk`.
3846
- Refer: https://github.com/reclaimprotocol/reclaim-inapp-reactnative-sdk/blob/main/README.md#ios-setup
3947

lib/commonjs/index.js

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/commonjs/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/module/index.js

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/module/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/typescript/commonjs/src/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ export declare class ReclaimVerification {
1212
private static defaultPlatform;
1313
constructor(platform?: ReclaimVerification.Platform);
1414
startVerification(request: ReclaimVerification.Request): Promise<ReclaimVerification.Response>;
15+
startVerificationFromUrl(requestUrl: string): Promise<ReclaimVerification.Response>;
1516
ping(): Promise<boolean>;
1617
setOverrides(overrides: ReclaimVerification.OverrideConfig): Promise<void>;
1718
clearAllOverrides(): Promise<void>;

lib/typescript/commonjs/src/index.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/typescript/module/src/index.d.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ export declare class ReclaimVerification {
1212
private static defaultPlatform;
1313
constructor(platform?: ReclaimVerification.Platform);
1414
startVerification(request: ReclaimVerification.Request): Promise<ReclaimVerification.Response>;
15+
startVerificationFromUrl(requestUrl: string): Promise<ReclaimVerification.Response>;
1516
ping(): Promise<boolean>;
1617
setOverrides(overrides: ReclaimVerification.OverrideConfig): Promise<void>;
1718
clearAllOverrides(): Promise<void>;

0 commit comments

Comments
 (0)