Skip to content

Commit 1134b95

Browse files
authored
Release 3.0.1 (#4163)
<!-- Thanks for submitting a pull request! We appreciate you spending the time to work on these changes. Please follow the template so that the reviewers can easily understand what the code changes affect. --> ## Summary Release of 3.0.1 <!-- Explain the motivation for this PR. Include "Fixes #<number>" if applicable. --> ## Test plan <!-- Provide a minimal but complete code snippet that can be used to test out this change along with instructions how to run it and a description of the expected behavior. -->
1 parent a38678d commit 1134b95

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Example/ios/Podfile.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ PODS:
429429
- React-Core
430430
- RNGestureHandler (2.9.0):
431431
- React-Core
432-
- RNReanimated (3.0.0):
432+
- RNReanimated (3.0.1):
433433
- DoubleConversion
434434
- FBLazyVector
435435
- FBReactNativeSpec
@@ -695,7 +695,7 @@ SPEC CHECKSUMS:
695695
RNCMaskedView: bc0170f389056201c82a55e242e5d90070e18e5a
696696
RNCPicker: 914b557e20b3b8317b084aca9ff4b4edb95f61e4
697697
RNGestureHandler: 071d7a9ad81e8b83fe7663b303d132406a7d8f39
698-
RNReanimated: a71e12c5fcf4f01bd7cfc286cb83467cab89e5c2
698+
RNReanimated: 42295301c43f974340a510ba18d5a2031c191c30
699699
RNScreens: ea4cd3a853063cda19a4e3c28d2e52180c80f4eb
700700
RNSVG: d787d64ca06b9158e763ad2638a8c4edce00782a
701701
SocketRocket: fccef3f9c5cedea1353a9ef6ada904fde10d6608

FabricExample/ios/Podfile.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -779,7 +779,7 @@ PODS:
779779
- React-Codegen
780780
- React-RCTFabric
781781
- ReactCommon/turbomodule/core
782-
- RNReanimated (3.0.0):
782+
- RNReanimated (3.0.1):
783783
- DoubleConversion
784784
- FBLazyVector
785785
- FBReactNativeSpec
@@ -1077,7 +1077,7 @@ SPEC CHECKSUMS:
10771077
React-runtimeexecutor: 7bf0dafc7b727d93c8cb94eb00a9d3753c446c3e
10781078
ReactCommon: 6f65ea5b7d84deb9e386f670dd11ce499ded7b40
10791079
RNGestureHandler: 9d2ebd17a9fef618d9720e3d95ff5e6607acf8d4
1080-
RNReanimated: a318e90c84206fbf6ef10eefc50c4ef5289d206d
1080+
RNReanimated: a199a8a5d0b933b127ef0deb3ba6859b32c45d7c
10811081
RNScreens: a838934f2f0d915c8a756409d674a862b70b1677
10821082
RNSVG: f49e247b4ea8b56c27ac52aa92259361b202ba7e
10831083
SocketRocket: fccef3f9c5cedea1353a9ef6ada904fde10d6608

TVOSExample/ios/Podfile.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ PODS:
322322
- React-jsi (= 0.69.5-2)
323323
- React-logger (= 0.69.5-2)
324324
- React-perflogger (= 0.69.5-2)
325-
- RNReanimated (3.0.0):
325+
- RNReanimated (3.0.1):
326326
- DoubleConversion
327327
- FBLazyVector
328328
- FBReactNativeSpec
@@ -538,7 +538,7 @@ SPEC CHECKSUMS:
538538
React-RCTText: 16122ecd9be53be613b2206a13e5cf987835c8cf
539539
React-runtimeexecutor: 44fe73dca7d31245dfc031971a2ce14085c8d5fe
540540
ReactCommon: 3f6173ad12133f7e032f4c8d061dba181115c1c0
541-
RNReanimated: a6d92c5a9476b1be4ea6918222a7d2a0bfbe97b2
541+
RNReanimated: 3e76b1653327d4a649432e25c32b4ad09c1ca223
542542
SocketRocket: fccef3f9c5cedea1353a9ef6ada904fde10d6608
543543
Yoga: 5f6b76dc63952163378af6afc502d8bab96643a1
544544
YogaKit: 1e22bf2228b3a5ac8cc88965153061ae92c494b5

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-reanimated",
3-
"version": "3.0.0",
3+
"version": "3.0.1",
44
"description": "More powerful alternative to Animated library for React Native.",
55
"scripts": {
66
"test": "yarn run format:js && yarn run lint:js && yarn run test:unit",

src/reanimated2/platform-specific/checkVersion.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* with the version used to build the native part of the library in runtime.
44
* Remember to keep this in sync with the version declared in `package.json`
55
*/
6-
const jsVersion = '3.0.0';
6+
const jsVersion = '3.0.1';
77

88
/**
99
* Checks that native and js versions of reanimated match.

0 commit comments

Comments
 (0)