react-native-gesture-handler 2.21.1 → 2.21.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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",