@reclaimprotocol/inapp-rn-sdk 0.9.0 → 0.9.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
17
17
 
18
18
  s.source_files = "ios/**/*.{h,m,mm,cpp,swift}"
19
19
  s.private_header_files = "ios/generated/**/*.h"
20
- s.dependency "ReclaimInAppSdk", "~> 0.9.0"
20
+ s.dependency "ReclaimInAppSdk", "~> 0.9.2"
21
21
 
22
22
  # Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0.
23
23
  # See https://github.com/facebook/react-native/blob/febf6b7f33fdb4904669f99d795eba4c0f95d7bf/scripts/cocoapods/new_architecture.rb#L79.
package/README.md CHANGED
@@ -110,13 +110,13 @@ Ignore if you already have this declaration in your `Podfile`.
110
110
 
111
111
  ```ruby
112
112
  # Cocoapods is the recommended way to install the SDK.
113
- pod 'ReclaimInAppSdk', '~> 0.9.0'
113
+ pod 'ReclaimInAppSdk', '~> 0.9.2'
114
114
  ```
115
115
 
116
116
  ##### From a specific tag
117
117
 
118
118
  ```ruby
119
- pod 'ReclaimInAppSdk', :git => 'https://github.com/reclaimprotocol/reclaim-inapp-ios-sdk.git', :tag => '0.9.0'
119
+ pod 'ReclaimInAppSdk', :git => 'https://github.com/reclaimprotocol/reclaim-inapp-ios-sdk.git', :tag => '0.9.2'
120
120
  ```
121
121
 
122
122
  ##### From git HEAD
@@ -153,7 +153,7 @@ target 'InappRnSdkExample' do
153
153
  )
154
154
 
155
155
  # This is the line that you may need to add in your podfile.
156
- pod 'ReclaimInAppSdk', '~> 0.9.0'
156
+ pod 'ReclaimInAppSdk', '~> 0.9.2'
157
157
 
158
158
  pre_install do |installer|
159
159
  system("cd ../../ && npx bob build --target codegen")
@@ -298,6 +298,8 @@ error.innerError
298
298
 
299
299
  ## Migration
300
300
 
301
+ - Migration steps for [0.9.2](https://github.com/reclaimprotocol/reclaim-inapp-reactnative-sdk/blob/main/documentation/migration.md#092)
302
+ - Migration steps for [0.9.1](https://github.com/reclaimprotocol/reclaim-inapp-reactnative-sdk/blob/main/documentation/migration.md#091)
301
303
  - Migration steps for [0.9.0](https://github.com/reclaimprotocol/reclaim-inapp-reactnative-sdk/blob/main/documentation/migration.md#090)
302
304
  - Migration steps for [0.8.3](https://github.com/reclaimprotocol/reclaim-inapp-reactnative-sdk/blob/main/documentation/migration.md#083)
303
305
  - Migration steps for [0.7.3](https://github.com/reclaimprotocol/reclaim-inapp-reactnative-sdk/blob/main/documentation/migration.md#073)
@@ -118,7 +118,7 @@ dependencies {
118
118
  implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
119
119
 
120
120
  //noinspection UseTomlInstead
121
- implementation "org.reclaimprotocol:inapp_sdk:0.9.0"
121
+ implementation "org.reclaimprotocol:inapp_sdk:0.9.2"
122
122
  }
123
123
 
124
124
  if (isNewArchitectureEnabled()) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reclaimprotocol/inapp-rn-sdk",
3
- "version": "0.9.0",
3
+ "version": "0.9.2",
4
4
  "description": "Reclaim Protocol's InApp React Native SDK for ZK proof generations for requests with an in-app experience of web verification",
5
5
  "source": "./src/index.ts",
6
6
  "main": "./lib/commonjs/index.js",