Skip to content

Commit

Permalink
Release 2.17.0 (#2951)
Browse files Browse the repository at this point in the history
## Description

Release 2.17.0
  • Loading branch information
j-piasecki authored Jun 19, 2024
1 parent ed67fba commit 4332c57
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions FabricExample/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1163,7 +1163,7 @@ PODS:
- React-logger (= 0.74.0)
- React-perflogger (= 0.74.0)
- React-utils (= 0.74.0)
- RNGestureHandler (2.16.2):
- RNGestureHandler (2.17.0):
- DoubleConversion
- glog
- hermes-engine
Expand Down Expand Up @@ -1417,7 +1417,7 @@ SPEC CHECKSUMS:
React-runtimescheduler: 7fe561d179b97cecd0c2bec0bbd08f9fd8581c26
React-utils: f013537c3371270d2095bff1d594d00d4bc9261b
ReactCommon: 2cde697fd80bd31da1d6448d25a5803088585219
RNGestureHandler: 156548e18203327173a764c6932a3f52e90cb9cd
RNGestureHandler: 998ef5b98a2339d5b4f80d799ce9eb7b06e5fcbf
SocketRocket: abac6f5de4d4d62d24e11868d7a2f427e0ef940d
Yoga: ff1d575b119f510a5de23c22a794872562078ccf

Expand Down
6 changes: 6 additions & 0 deletions FabricExample/metro.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ const root = path.resolve(__dirname, '..');

const modules = Object.keys(pack.peerDependencies);

// Gesture handler tries to require 'react-native-reanimated' inside a try...catch
// block. In root directory, we have reanimated installed but FabricExample doesn't.
// We need to blacklist reanimated to prevent its JS code from bein in the bundle
// without the native code or the babel plugin.
modules.push('react-native-reanimated');

const config = {
projectRoot: __dirname,
watchFolders: [root],
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-gesture-handler",
"version": "2.16.2",
"version": "2.17.0",
"description": "Experimental implementation of a new declarative API for gesture handling in react-native",
"scripts": {
"prepare": "bob build && husky install",
Expand Down

0 comments on commit 4332c57

Please sign in to comment.