Skip to content

Commit

Permalink
chore: release 1.2.0 (#69)
Browse files Browse the repository at this point in the history
# Release

Version 1.2.0
  • Loading branch information
kirillzyusko authored Sep 22, 2022
1 parent 65b0106 commit b7c67d5
Show file tree
Hide file tree
Showing 6 changed files with 54 additions and 26 deletions.
22 changes: 11 additions & 11 deletions FabricExample/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -625,29 +625,29 @@ PODS:
- React-jsinspector (0.69.4)
- React-logger (0.69.4):
- glog
- react-native-keyboard-controller (1.1.0):
- react-native-keyboard-controller (1.2.0):
- RCT-Folly
- RCTRequired
- RCTTypeSafety
- React-Codegen
- React-Core
- React-RCTFabric
- ReactCommon/turbomodule/core
- react-native-safe-area-context (4.3.3):
- react-native-safe-area-context (4.3.4):
- RCT-Folly
- RCTRequired
- RCTTypeSafety
- React-Core
- react-native-safe-area-context/common (= 4.3.3)
- react-native-safe-area-context/fabric (= 4.3.3)
- react-native-safe-area-context/common (= 4.3.4)
- react-native-safe-area-context/fabric (= 4.3.4)
- ReactCommon/turbomodule/core
- react-native-safe-area-context/common (4.3.3):
- react-native-safe-area-context/common (4.3.4):
- RCT-Folly
- RCTRequired
- RCTTypeSafety
- React-Core
- ReactCommon/turbomodule/core
- react-native-safe-area-context/fabric (4.3.3):
- react-native-safe-area-context/fabric (4.3.4):
- RCT-Folly
- RCTRequired
- RCTTypeSafety
Expand Down Expand Up @@ -730,8 +730,8 @@ PODS:
- React-perflogger (= 0.69.4)
- RNCMaskedView (0.2.7):
- React-Core
- RNGestureHandler (2.6.1):
- RCT-Folly
- RNGestureHandler (2.5.0):
- RCT-Folly (= 2021.06.28.00-v2)
- RCTRequired
- RCTTypeSafety
- React
Expand Down Expand Up @@ -1007,8 +1007,8 @@ SPEC CHECKSUMS:
React-jsiexecutor: a27badbbdbc0ff781813370736a2d1c7261181d4
React-jsinspector: 8a3d3f5dcd23a91e8c80b1bf0e96902cd1dca999
React-logger: 1088859f145b8f6dd0d3ed051a647ef0e3e80fad
react-native-keyboard-controller: 54e3b762b057ccff0e95ad7247ed806f8deee981
react-native-safe-area-context: 6ab17f921537d721f7315b198d82d6a65a2680f9
react-native-keyboard-controller: ae18b2bd7e9d7ffda09e5c712084cde00bec2dce
react-native-safe-area-context: 82b1d3e2cfc694d750df2d2311c67dbf8ca82987
React-perflogger: cb386fd44c97ec7f8199c04c12b22066b0f2e1e0
React-RCTActionSheet: f803a85e46cf5b4066c2ac5e122447f918e9c6e5
React-RCTAnimation: 19c80fa950ccce7f4db76a2a7f2cf79baae07fc7
Expand All @@ -1024,7 +1024,7 @@ SPEC CHECKSUMS:
React-runtimeexecutor: 61ee22a8cdf8b6bb2a7fb7b4ba2cc763e5285196
ReactCommon: 8f67bd7e0a6afade0f20718f859dc8c2275f2e83
RNCMaskedView: cb9670ea9239998340eaab21df13fa12a1f9de15
RNGestureHandler: d05b31657710f5f57108e1a51ff6ed72f7a4673c
RNGestureHandler: 28c0a447ceb87b96c4045c2f786f67958837f320
RNReanimated: 42c9351d8b8656441ee62a9c81e7fdba176f696b
RNScreens: e2cd04caa74748a6e42609a7b84f76c71d70a6ee
SocketRocket: fccef3f9c5cedea1353a9ef6ada904fde10d6608
Expand Down
6 changes: 3 additions & 3 deletions FabricExample/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
"@react-navigation/stack": "^6.2.2",
"react": "18.0.0",
"react-native": "0.69.4",
"react-native-gesture-handler": "^2.6.1",
"react-native-gesture-handler": "2.5.0",
"react-native-keyboard-controller": "link:../",
"react-native-reanimated": "3.0.0-rc.2",
"react-native-safe-area-context": "^4.3.3",
"react-native-screens": "^3.17.0",
"react-native-safe-area-context": "4.3.4",
"react-native-screens": "3.17.0",
"react-native-toast-message": "^2.1.5"
},
"devDependencies": {
Expand Down
27 changes: 27 additions & 0 deletions FabricExample/patches/react-native-gesture-handler+2.5.0.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
diff --git a/node_modules/react-native-gesture-handler/android/build.gradle b/node_modules/react-native-gesture-handler/android/build.gradle
index ad5845e..7318b1b 100644
--- a/node_modules/react-native-gesture-handler/android/build.gradle
+++ b/node_modules/react-native-gesture-handler/android/build.gradle
@@ -59,6 +59,11 @@ def shouldUseCommonInterfaceFromReanimated() {
}
}

+def reactNativeArchitectures() {
+ def value = project.getProperties().get("reactNativeArchitectures")
+ return value ? value.split(",") : ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"]
+}
+
repositories {
mavenCentral()
}
@@ -98,6 +103,10 @@ android {
}
}
}
+
+ ndk {
+ abiFilters (*reactNativeArchitectures())
+ }
}

compileOptions {
18 changes: 9 additions & 9 deletions FabricExample/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3635,10 +3635,10 @@ react-native-codegen@^0.69.1:
jscodeshift "^0.13.1"
nullthrows "^1.1.1"

react-native-gesture-handler@^2.6.1:
version "2.6.1"
resolved "https://registry.yarnpkg.com/react-native-gesture-handler/-/react-native-gesture-handler-2.6.1.tgz#66c40c8d720eb4729b301836a40fd34d14ec840f"
integrity sha512-0MXjRgNCrsQJSo3B9oXORw5spdm/9dkDbP2JU/3zrVyV9/MnRz5Oo3oy7hREKYWVMF9Gk2UpsCquFLRFQxeSxQ==
react-native-gesture-handler@2.5.0:
version "2.5.0"
resolved "https://registry.yarnpkg.com/react-native-gesture-handler/-/react-native-gesture-handler-2.5.0.tgz#61385583570ed0a45a9ed142425e35f8fe8274fb"
integrity sha512-djZdcprFf08PZC332D+AeG5wcGeAPhzfCJtB3otUgOgTlvjVXmg/SLFdPJSpzLBqkRAmrC77tM79QgKbuLxkfw==
dependencies:
"@egjs/hammerjs" "^2.0.17"
hoist-non-react-statics "^3.3.0"
Expand Down Expand Up @@ -3668,12 +3668,12 @@ [email protected]:
setimmediate "^1.0.5"
string-hash-64 "^1.0.3"

react-native-safe-area-context@^4.3.3:
version "4.3.3"
resolved "https://registry.yarnpkg.com/react-native-safe-area-context/-/react-native-safe-area-context-4.3.3.tgz#a0f1e3116ded39efc1b78a46a6d89c71169827e4"
integrity sha512-xwsloGLDUzeTN40TIh4Te/zRePSnBAuWlLIiEW3RYE9gHHYslqQWpfK7N24SdAQEH3tHZ+huoYNjo2GQJO/vnQ==
[email protected].4:
version "4.3.4"
resolved "https://registry.yarnpkg.com/react-native-safe-area-context/-/react-native-safe-area-context-4.3.4.tgz#79060fcc02ef38d6fd7afdf87b2301b06bd99fe9"
integrity sha512-4dFZPDHRigZ+uw8HCmMLyC/IT1BG0B9QLvuwsBQAMDCRSrxISIYza9VIbsIn2FGvZiQ1gOoXBHDmy9WFihQsTg==

react-native-screens@^3.17.0:
[email protected]:
version "3.17.0"
resolved "https://registry.yarnpkg.com/react-native-screens/-/react-native-screens-3.17.0.tgz#b099b3ec9d46de07c857f14d713c293024c7c842"
integrity sha512-OZCQU7+3neHNaM19jBkYRjL50kXz7p7MUgWQTCcdRoshcCiolf8aXs4eRVQKGK6m1RmoB8UL0//m5R9KoR+41w==
Expand Down
4 changes: 2 additions & 2 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ PODS:
- React-jsinspector (0.69.4)
- React-logger (0.69.4):
- glog
- react-native-keyboard-controller (1.1.0):
- react-native-keyboard-controller (1.2.0):
- React-Core
- react-native-safe-area-context (4.3.1):
- RCT-Folly
Expand Down Expand Up @@ -600,7 +600,7 @@ SPEC CHECKSUMS:
React-jsiexecutor: a27badbbdbc0ff781813370736a2d1c7261181d4
React-jsinspector: 8a3d3f5dcd23a91e8c80b1bf0e96902cd1dca999
React-logger: 1088859f145b8f6dd0d3ed051a647ef0e3e80fad
react-native-keyboard-controller: 4b0b5902fb42a7d947c465810f99b675d74179de
react-native-keyboard-controller: de87977012ae8b2cdf658f7cfbdbab8335e67f4e
react-native-safe-area-context: 6c12e3859b6f27b25de4fee8201cfb858432d8de
React-perflogger: cb386fd44c97ec7f8199c04c12b22066b0f2e1e0
React-RCTActionSheet: f803a85e46cf5b4066c2ac5e122447f918e9c6e5
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-keyboard-controller",
"version": "1.1.0",
"version": "1.2.0",
"description": "Keyboard manager which works in identical way on both iOS and Android",
"main": "lib/commonjs/index",
"module": "lib/module/index",
Expand All @@ -16,6 +16,7 @@
"react-native-keyboard-controller.podspec",
"!lib/typescript/example",
"!android/build",
"!android/.gradle",
"!ios/build",
"!**/__tests__",
"!**/__fixtures__",
Expand Down

0 comments on commit b7c67d5

Please sign in to comment.