From d7bf51ac7d29c9d7a464e706278db894025e74fb Mon Sep 17 00:00:00 2001 From: Gordon Hayes Date: Mon, 14 Aug 2023 15:59:58 +0200 Subject: [PATCH] fix: apply follow path fix in nested artboards --- CONTRIBUTING.md | 4 ++-- android/build.gradle | 2 +- example/ios/Podfile.lock | 10 +++++----- package.json | 2 +- rive-react-native.podspec | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 493ee02..58ff2d7 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -107,7 +107,7 @@ When an underlying runtime like [rive-ios](https://github.com/rive-app/rive-ios) Before running `yarn` at the root level of the project, set the appropriate version of the iOS runtime in `rive-react-native.podspec` at the root of the folder: ``` -s.dependency "RiveRuntime", "1.0.18" +s.dependency "RiveRuntime", "5.1.6" ``` In the example folder, run the following command to update the example project to retrieve the expected `RiveRuntime` dependency you're upgrading to: @@ -121,7 +121,7 @@ pod update RiveRuntime In the top-level `android` folder, change the dependency version in `build.gradle` to the version you're looking to upgrade to in the dependencies: ``` -implementation 'app.rive:rive-android:2.0.26' +implementation 'app.rive:rive-android:8.2.1' ``` ### Debugging against local rive-android diff --git a/android/build.gradle b/android/build.gradle index bc46338..90ddfd2 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -135,7 +135,7 @@ dependencies { implementation 'androidx.core:core-ktx:1.10.0' implementation 'androidx.appcompat:appcompat:1.6.1' implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1' - implementation 'app.rive:rive-android:8.1.3' + implementation 'app.rive:rive-android:8.2.1' implementation "androidx.startup:startup-runtime:1.1.1" implementation 'com.android.volley:volley:1.2.0' } diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index e214f68..6be96e0 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -487,10 +487,10 @@ PODS: - React-jsi (= 0.72.3) - React-logger (= 0.72.3) - React-perflogger (= 0.72.3) - - rive-react-native (6.0.3): + - rive-react-native (6.0.4): - React-Core - - RiveRuntime (= 5.1.5) - - RiveRuntime (5.1.5) + - RiveRuntime (= 5.1.6) + - RiveRuntime (5.1.6) - RNCMaskedView (0.2.9): - React-Core - RNCPicker (1.16.8): @@ -744,8 +744,8 @@ SPEC CHECKSUMS: React-runtimescheduler: 837c1bebd2f84572db17698cd702ceaf585b0d9a React-utils: bcb57da67eec2711f8b353f6e3d33bd8e4b2efa3 ReactCommon: 3ccb8fb14e6b3277e38c73b0ff5e4a1b8db017a9 - rive-react-native: e0cd8d23fe155fd25186761898ed2b11ddf70e33 - RiveRuntime: deb4e08a0fca56c5b038393a8237a7aadff3b552 + rive-react-native: 2bbbdb03edbb7f1f9ffda06bf7bcd0a2f1c2a4d5 + RiveRuntime: b019064a8668431b80389f83b5a2eb012e034c01 RNCMaskedView: 949696f25ec596bfc697fc88e6f95cf0c79669b6 RNCPicker: 0991c56da7815c0cf946d6f63cf920b25296e5f6 RNGestureHandler: a479ebd5ed4221a810967000735517df0d2db211 diff --git a/package.json b/package.json index fe6e121..4c5f811 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rive-react-native", - "version": "6.0.3", + "version": "6.0.4", "description": "Rive React Native", "main": "lib/commonjs/index", "module": "lib/module/index", diff --git a/rive-react-native.podspec b/rive-react-native.podspec index 9e1dc5f..05162b5 100644 --- a/rive-react-native.podspec +++ b/rive-react-native.podspec @@ -16,5 +16,5 @@ Pod::Spec.new do |s| s.source_files = "ios/**/*.{h,m,mm,swift}" s.dependency "React-Core" - s.dependency "RiveRuntime", "5.1.5" + s.dependency "RiveRuntime", "5.1.6" end