react-native-gesture-handler 2.21.1 → 2.21.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -69,7 +69,7 @@ def shouldUseCommonInterfaceFromReanimated() {
69
69
  def json = new JsonSlurper().parseText(inputFile.text)
70
70
  def reanimatedVersion = json.version as String
71
71
  def (major, minor, patch) = reanimatedVersion.tokenize('.')
72
- return (Integer.parseInt(major) == 2 && Integer.parseInt(minor) >= 3) || Integer.parseInt(major) == 3
72
+ return (Integer.parseInt(major) == 2 && Integer.parseInt(minor) >= 3) || Integer.parseInt(major) >= 3
73
73
  } else {
74
74
  return false
75
75
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-gesture-handler",
3
- "version": "2.21.1",
3
+ "version": "2.21.2",
4
4
  "description": "Declarative API exposing native platform touch and gesture system to React Native",
5
5
  "scripts": {
6
6
  "prepare": "bob build && husky install",