Skip to content

Commit 6b11e2b

Browse files
committed
chore: release 0.33.1
1 parent e4e82c1 commit 6b11e2b

File tree

9 files changed

+20
-20
lines changed

9 files changed

+20
-20
lines changed

bun.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/ios/Podfile.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ PODS:
88
- hermes-engine (0.82.0):
99
- hermes-engine/Pre-built (= 0.82.0)
1010
- hermes-engine/Pre-built (0.82.0)
11-
- NitroModules (0.33.0):
11+
- NitroModules (0.33.1):
1212
- boost
1313
- DoubleConversion
1414
- fast_float
@@ -37,7 +37,7 @@ PODS:
3737
- ReactCommon/turbomodule/core
3838
- SocketRocket
3939
- Yoga
40-
- NitroTest (0.33.0):
40+
- NitroTest (0.33.1):
4141
- boost
4242
- DoubleConversion
4343
- fast_float
@@ -68,7 +68,7 @@ PODS:
6868
- ReactCommon/turbomodule/core
6969
- SocketRocket
7070
- Yoga
71-
- NitroTestExternal (0.33.0):
71+
- NitroTestExternal (0.33.1):
7272
- boost
7373
- DoubleConversion
7474
- fast_float
@@ -2818,9 +2818,9 @@ SPEC CHECKSUMS:
28182818
fmt: a40bb5bd0294ea969aaaba240a927bd33d878cdd
28192819
glog: 5683914934d5b6e4240e497e0f4a3b42d1854183
28202820
hermes-engine: 8642d8f14a548ab718ec112e9bebdfdd154138b5
2821-
NitroModules: a375db5ca93f5f8a9b8fdd81bf3b8e94900b183d
2822-
NitroTest: 6b0ca998c23231da38ffee8ecc581d92a9815266
2823-
NitroTestExternal: 1bca533683e82deff5f1cceebd399815e8b8659c
2821+
NitroModules: 8c8c45c9f7feb88140c726dbc229367490142881
2822+
NitroTest: 806bc0699a1fc4fa0eca5ac07c9ab091b0b388a5
2823+
NitroTestExternal: 553839b41dc0f390cf1ba107fe19a43b13a56cc5
28242824
RCT-Folly: 59ec0ac1f2f39672a0c6e6cecdd39383b764646f
28252825
RCTDeprecation: 22bf66112da540a7d40e536366ddd8557934fca1
28262826
RCTRequired: a0ed4dc41b35f79fbb6d8ba320e06882a8c792cf

example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-nitro-example",
3-
"version": "0.33.0",
3+
"version": "0.33.1",
44
"private": true,
55
"scripts": {
66
"start": "react-native start --client-logs",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "react-native-nitro",
33
"packageManager": "bun@1.1.42",
44
"private": true,
5-
"version": "0.33.0",
5+
"version": "0.33.1",
66
"repository": "https://github.com/mrousavy/nitro.git",
77
"author": "Marc Rousavy <me@mrousavy.com> (https://github.com/mrousavy)",
88
"workspaces": [

packages/nitrogen/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nitrogen",
3-
"version": "0.33.0",
3+
"version": "0.33.1",
44
"description": "The code-generator for react-native-nitro-modules.",
55
"main": "lib/index",
66
"types": "lib/index.d.ts",
@@ -35,7 +35,7 @@
3535
},
3636
"dependencies": {
3737
"chalk": "^5.3.0",
38-
"react-native-nitro-modules": "^0.33.0",
38+
"react-native-nitro-modules": "^0.33.1",
3939
"ts-morph": "^27.0.0",
4040
"yargs": "^18.0.0",
4141
"zod": "^4.0.5"

packages/react-native-nitro-modules/cpp/utils/NitroDefines.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#define NitroDefines_h
1010

1111
// Sets the version of the native Nitro core library
12-
#define NITRO_VERSION "0.33.0"
12+
#define NITRO_VERSION "0.33.1"
1313

1414
// Sets whether to use debug or optimized production build flags
1515
#ifdef DEBUG

packages/react-native-nitro-modules/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-nitro-modules",
3-
"version": "0.33.0",
3+
"version": "0.33.1",
44
"description": "Insanely fast native C++, Swift or Kotlin modules with a statically compiled binding layer to JSI.",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",

packages/react-native-nitro-test-external/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-nitro-test-external",
3-
"version": "0.33.0",
3+
"version": "0.33.1",
44
"description": "react-native-nitro-test-external",
55
"main": "lib/index",
66
"module": "lib/index",

packages/react-native-nitro-test/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-nitro-test",
3-
"version": "0.33.0",
3+
"version": "0.33.1",
44
"description": "A testing playground library for Nitro Modules.",
55
"main": "lib/index",
66
"module": "lib/index",

0 commit comments

Comments
 (0)