Skip to content

Commit

Permalink
chore: release 1.0.0-beta.7
Browse files Browse the repository at this point in the history
  • Loading branch information
boorad committed Dec 11, 2024
1 parent 73598db commit e371bcb
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 25 deletions.
8 changes: 4 additions & 4 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ PODS:
- ReactCommon/turbomodule/core
- Yoga
- OpenSSL-Universal (3.3.2000)
- QuickCrypto (1.0.0-beta.6):
- QuickCrypto (1.0.0-beta.5):
- DoubleConversion
- glog
- hermes-engine
Expand Down Expand Up @@ -1720,7 +1720,7 @@ DEPENDENCIES:
- glog (from `../../node_modules/react-native/third-party-podspecs/glog.podspec`)
- hermes-engine (from `../../node_modules/react-native/sdks/hermes-engine/hermes-engine.podspec`)
- NitroModules (from `../../node_modules/react-native-nitro-modules`)
- QuickCrypto (from `../../node_modules/react-native-quick-crypto`)
- QuickCrypto (from `../node_modules/react-native-quick-crypto`)
- RCT-Folly (from `../../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
- RCT-Folly/Fabric (from `../../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec`)
- RCTDeprecation (from `../../node_modules/react-native/ReactApple/Libraries/RCTFoundation/RCTDeprecation`)
Expand Down Expand Up @@ -1807,7 +1807,7 @@ EXTERNAL SOURCES:
NitroModules:
:path: "../../node_modules/react-native-nitro-modules"
QuickCrypto:
:path: "../../node_modules/react-native-quick-crypto"
:path: "../node_modules/react-native-quick-crypto"
RCT-Folly:
:podspec: "../../node_modules/react-native/third-party-podspecs/RCT-Folly.podspec"
RCTDeprecation:
Expand Down Expand Up @@ -1940,7 +1940,7 @@ SPEC CHECKSUMS:
hermes-engine: 46f1ffbf0297f4298862068dd4c274d4ac17a1fd
NitroModules: 47399393665e69228b29a17f501c7b453679ccc0
OpenSSL-Universal: b60a3702c9fea8b3145549d421fdb018e53ab7b4
QuickCrypto: e68316432823f70bdae0bf1486dc5e9afdfdff4d
QuickCrypto: 8d76ae3a0bf60509f671193eb4ed666a80da34cb
RCT-Folly: 84578c8756030547307e4572ab1947de1685c599
RCTDeprecation: fde92935b3caa6cb65cbff9fbb7d3a9867ffb259
RCTRequired: 75c6cee42d21c1530a6f204ba32ff57335d19007
Expand Down
4 changes: 2 additions & 2 deletions example/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-quick-crypto-example",
"version": "1.0.0-beta.6",
"version": "1.0.0-beta.7",
"private": true,
"type": "module",
"scripts": {
Expand Down Expand Up @@ -36,7 +36,7 @@
"react-native-bouncy-checkbox": "4.0.1",
"react-native-nitro-modules": "0.18.2",
"react-native-quick-base64": "2.1.2",
"react-native-quick-crypto": "workspace:*",
"react-native-quick-crypto": "1.0.0-beta.7",
"react-native-safe-area-context": "4.14.0",
"react-native-screens": "3.35.0",
"react-native-vector-icons": "^10.1.0",
Expand Down
17 changes: 1 addition & 16 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0-beta.6",
"version": "1.0.0-beta.7",
"scripts": {
"check-all": "./scripts/clang-format.sh",
"clean": "bun --filter='*' clean",
Expand Down Expand Up @@ -38,21 +38,6 @@
"before:release": "bun bundle-install && bun pods && git add example/ios/Podfile.lock"
},
"plugins": {
"@release-it/bumper": {
"out": [
{
"file": "packages/react-native-quick-crypto/package.json",
"path": "version"
},
{
"file": "example/package.json",
"path": [
"version",
"dependencies.react-native-quick-crypto"
]
}
]
},
"@release-it/conventional-changelog": {
"preset": {
"name": "conventionalcommits",
Expand Down
18 changes: 15 additions & 3 deletions packages/react-native-quick-crypto/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-quick-crypto",
"version": "1.0.0-beta.6",
"version": "1.0.0-beta.7",
"description": "A fast implementation of Node's `crypto` module written in C/C++ JSI",
"type": "module",
"main": "lib/commonjs/index",
Expand Down Expand Up @@ -108,8 +108,20 @@
"release": false
},
"hooks": {
"before:init": "bun tsc && bun lint && bun format",
"after:bump": "bun prepare"
"after:bump": "bun tsc && bun lint && bun format && bun prepare"
},
"plugins": {
"@release-it/bumper": {
"out": [
{
"file": "../../example/package.json",
"path": [
"version",
"dependencies.react-native-quick-crypto"
]
}
]
}
}
},
"react-native-builder-bob": {
Expand Down

0 comments on commit e371bcb

Please sign in to comment.