react-native-uxrate 0.2.0 → 0.2.1

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.
@@ -52,9 +52,10 @@ jobs:
52
52
  mkdir -p public-repo/examples/react-native
53
53
  cp -r example/* public-repo/examples/react-native/
54
54
 
55
- - name: Commit and push to public repo
55
+ - name: Rebuild README and push
56
56
  working-directory: public-repo
57
57
  run: |
58
+ bash scripts/rebuild-readme.sh .
58
59
  git config user.name "github-actions[bot]"
59
60
  git config user.email "github-actions[bot]@users.noreply.github.com"
60
61
  git add -A
@@ -39,5 +39,5 @@ repositories {
39
39
 
40
40
  dependencies {
41
41
  implementation 'com.facebook.react:react-native:+'
42
- implementation 'com.uxrate:uxrate-sdk:[0.1.0, 0.2.0)'
42
+ implementation 'com.uxrate:uxrate-sdk:[0.2.0, 0.3.0)'
43
43
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-uxrate",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "React Native module for the UXRate SDK — embed AI-powered surveys in your React Native app. Supports iOS and Android.",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -14,5 +14,5 @@ Pod::Spec.new do |s|
14
14
  s.source_files = 'ios/**/*.{swift,m,h}'
15
15
 
16
16
  s.dependency 'React-Core'
17
- s.dependency 'UXRateSDK', '~> 0.1.0'
17
+ s.dependency 'UXRateSDK', '~> 0.2.0'
18
18
  end