Skip to content

Commit d7bf51a

Browse files
committed
fix: apply follow path fix in nested artboards
1 parent 774e15b commit d7bf51a

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ When an underlying runtime like [rive-ios](https://github.com/rive-app/rive-ios)
107107
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:
108108

109109
```
110-
s.dependency "RiveRuntime", "1.0.18"
110+
s.dependency "RiveRuntime", "5.1.6"
111111
```
112112

113113
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
121121
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:
122122

123123
```
124-
implementation 'app.rive:rive-android:2.0.26'
124+
implementation 'app.rive:rive-android:8.2.1'
125125
```
126126

127127
### Debugging against local rive-android

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ dependencies {
135135
implementation 'androidx.core:core-ktx:1.10.0'
136136
implementation 'androidx.appcompat:appcompat:1.6.1'
137137
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.1'
138-
implementation 'app.rive:rive-android:8.1.3'
138+
implementation 'app.rive:rive-android:8.2.1'
139139
implementation "androidx.startup:startup-runtime:1.1.1"
140140
implementation 'com.android.volley:volley:1.2.0'
141141
}

example/ios/Podfile.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -487,10 +487,10 @@ PODS:
487487
- React-jsi (= 0.72.3)
488488
- React-logger (= 0.72.3)
489489
- React-perflogger (= 0.72.3)
490-
- rive-react-native (6.0.3):
490+
- rive-react-native (6.0.4):
491491
- React-Core
492-
- RiveRuntime (= 5.1.5)
493-
- RiveRuntime (5.1.5)
492+
- RiveRuntime (= 5.1.6)
493+
- RiveRuntime (5.1.6)
494494
- RNCMaskedView (0.2.9):
495495
- React-Core
496496
- RNCPicker (1.16.8):
@@ -744,8 +744,8 @@ SPEC CHECKSUMS:
744744
React-runtimescheduler: 837c1bebd2f84572db17698cd702ceaf585b0d9a
745745
React-utils: bcb57da67eec2711f8b353f6e3d33bd8e4b2efa3
746746
ReactCommon: 3ccb8fb14e6b3277e38c73b0ff5e4a1b8db017a9
747-
rive-react-native: e0cd8d23fe155fd25186761898ed2b11ddf70e33
748-
RiveRuntime: deb4e08a0fca56c5b038393a8237a7aadff3b552
747+
rive-react-native: 2bbbdb03edbb7f1f9ffda06bf7bcd0a2f1c2a4d5
748+
RiveRuntime: b019064a8668431b80389f83b5a2eb012e034c01
749749
RNCMaskedView: 949696f25ec596bfc697fc88e6f95cf0c79669b6
750750
RNCPicker: 0991c56da7815c0cf946d6f63cf920b25296e5f6
751751
RNGestureHandler: a479ebd5ed4221a810967000735517df0d2db211

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rive-react-native",
3-
"version": "6.0.3",
3+
"version": "6.0.4",
44
"description": "Rive React Native",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",

rive-react-native.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ Pod::Spec.new do |s|
1616
s.source_files = "ios/**/*.{h,m,mm,swift}"
1717

1818
s.dependency "React-Core"
19-
s.dependency "RiveRuntime", "5.1.5"
19+
s.dependency "RiveRuntime", "5.1.6"
2020
end

0 commit comments

Comments
 (0)