Skip to content

Commit e371bcb

Browse files
committed
chore: release 1.0.0-beta.7
1 parent 73598db commit e371bcb

File tree

4 files changed

+22
-25
lines changed

4 files changed

+22
-25
lines changed

example/ios/Podfile.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ PODS:
3131
- ReactCommon/turbomodule/core
3232
- Yoga
3333
- OpenSSL-Universal (3.3.2000)
34-
- QuickCrypto (1.0.0-beta.6):
34+
- QuickCrypto (1.0.0-beta.5):
3535
- DoubleConversion
3636
- glog
3737
- hermes-engine
@@ -1720,7 +1720,7 @@ DEPENDENCIES:
17201720
- glog (from `../../node_modules/react-native/third-party-podspecs/glog.podspec`)
17211721
- hermes-engine (from `../../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
17221722
- NitroModules (from `../../node_modules/react-native-nitro-modules`)
1723-
- QuickCrypto (from `../../node_modules/react-native-quick-crypto`)
1723+
- QuickCrypto (from `../node_modules/react-native-quick-crypto`)
17241724
- RCT-Folly (from `../../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
17251725
- RCT-Folly/Fabric (from `../../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
17261726
- RCTDeprecation (from `../../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`)
@@ -1807,7 +1807,7 @@ EXTERNAL SOURCES:
18071807
NitroModules:
18081808
:path: "../../node_modules/react-native-nitro-modules"
18091809
QuickCrypto:
1810-
:path: "../../node_modules/react-native-quick-crypto"
1810+
:path: "../node_modules/react-native-quick-crypto"
18111811
RCT-Folly:
18121812
:podspec: "../../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
18131813
RCTDeprecation:
@@ -1940,7 +1940,7 @@ SPEC CHECKSUMS:
19401940
hermes-engine: 46f1ffbf0297f4298862068dd4c274d4ac17a1fd
19411941
NitroModules: 47399393665e69228b29a17f501c7b453679ccc0
19421942
OpenSSL-Universal: b60a3702c9fea8b3145549d421fdb018e53ab7b4
1943-
QuickCrypto: e68316432823f70bdae0bf1486dc5e9afdfdff4d
1943+
QuickCrypto: 8d76ae3a0bf60509f671193eb4ed666a80da34cb
19441944
RCT-Folly: 84578c8756030547307e4572ab1947de1685c599
19451945
RCTDeprecation: fde92935b3caa6cb65cbff9fbb7d3a9867ffb259
19461946
RCTRequired: 75c6cee42d21c1530a6f204ba32ff57335d19007

example/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-quick-crypto-example",
3-
"version": "1.0.0-beta.6",
3+
"version": "1.0.0-beta.7",
44
"private": true,
55
"type": "module",
66
"scripts": {
@@ -36,7 +36,7 @@
3636
"react-native-bouncy-checkbox": "4.0.1",
3737
"react-native-nitro-modules": "0.18.2",
3838
"react-native-quick-base64": "2.1.2",
39-
"react-native-quick-crypto": "workspace:*",
39+
"react-native-quick-crypto": "1.0.0-beta.7",
4040
"react-native-safe-area-context": "4.14.0",
4141
"react-native-screens": "3.35.0",
4242
"react-native-vector-icons": "^10.1.0",

package.json

+1-16
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-beta.6",
2+
"version": "1.0.0-beta.7",
33
"scripts": {
44
"check-all": "./scripts/clang-format.sh",
55
"clean": "bun --filter='*' clean",
@@ -38,21 +38,6 @@
3838
"before:release": "bun bundle-install && bun pods && git add example/ios/Podfile.lock"
3939
},
4040
"plugins": {
41-
"@release-it/bumper": {
42-
"out": [
43-
{
44-
"file": "packages/react-native-quick-crypto/package.json",
45-
"path": "version"
46-
},
47-
{
48-
"file": "example/package.json",
49-
"path": [
50-
"version",
51-
"dependencies.react-native-quick-crypto"
52-
]
53-
}
54-
]
55-
},
5641
"@release-it/conventional-changelog": {
5742
"preset": {
5843
"name": "conventionalcommits",

packages/react-native-quick-crypto/package.json

+15-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-quick-crypto",
3-
"version": "1.0.0-beta.6",
3+
"version": "1.0.0-beta.7",
44
"description": "A fast implementation of Node's `crypto` module written in C/C++ JSI",
55
"type": "module",
66
"main": "lib/commonjs/index",
@@ -108,8 +108,20 @@
108108
"release": false
109109
},
110110
"hooks": {
111-
"before:init": "bun tsc && bun lint && bun format",
112-
"after:bump": "bun prepare"
111+
"after:bump": "bun tsc && bun lint && bun format && bun prepare"
112+
},
113+
"plugins": {
114+
"@release-it/bumper": {
115+
"out": [
116+
{
117+
"file": "../../example/package.json",
118+
"path": [
119+
"version",
120+
"dependencies.react-native-quick-crypto"
121+
]
122+
}
123+
]
124+
}
113125
}
114126
},
115127
"react-native-builder-bob": {

0 commit comments

Comments
 (0)