Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix codegen build error #17

Merged
merged 2 commits into from
Dec 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ __snapshots/**
.prettierignore
tsconfig.json
jest.config.js
src
docs

#IntellIJ
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
10.0.1
----

**Plugin**
- Fixed a build issue related to Codegen.
- Batch now publish TypeScript source files since Codegen does not support DTS files for Turbo Module Specifications.

10.0.0
----

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public class RNBatchModuleImpl {

private static final String PLUGIN_VERSION_ENVIRONMENT_VARIABLE = "batch.plugin.version";

public static final String PLUGIN_VERSION = "ReactNative/10.0.0";
public static final String PLUGIN_VERSION = "ReactNative/10.0.1";

public static final String LOGGER_TAG = "RNBatchBridge";

Expand Down
2 changes: 1 addition & 1 deletion ios/RNBatch.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#import <React/RCTEventEmitter.h>
#import <Batch/Batch.h>

#define PluginVersion "ReactNative/10.0.0"
#define PluginVersion "ReactNative/10.0.1"

#ifdef RCT_NEW_ARCH_ENABLED
#import <RNBatchSpec/RNBatchSpec.h>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@batch.com/react-native-plugin",
"version": "10.0.0",
"version": "10.0.1",
"description": "Batch.com React-Native Plugin",
"homepage": "https://github.com/BatchLabs/Batch-React-Native-Plugin",
"main": "dist/Batch.js",
Expand Down
Loading