diff --git a/packages/react-native-executorch/package.json b/packages/react-native-executorch/package.json index c762d754a4..b83aa0f11b 100644 --- a/packages/react-native-executorch/package.json +++ b/packages/react-native-executorch/package.json @@ -1,6 +1,6 @@ { "name": "react-native-executorch", - "version": "0.10.0", + "version": "0.10.1", "nativeLibsVersion": "0.10.0", "description": "An easy way to run AI models in React Native with ExecuTorch", "main": "./lib/module/index.js", diff --git a/packages/react-native-executorch/src/fetcher/telemetry.ts b/packages/react-native-executorch/src/fetcher/telemetry.ts index 5b84bcf72f..b2877508be 100644 --- a/packages/react-native-executorch/src/fetcher/telemetry.ts +++ b/packages/react-native-executorch/src/fetcher/telemetry.ts @@ -10,7 +10,7 @@ const DOWNLOAD_EVENT_ENDPOINT = 'https://ai.swmansion.com/telemetry/downloads/ap // self-referencing import would need package `exports` support in the consuming // bundler to load at all. A wrong value here is analytics noise; a failed // import would break the bundle. -const LIB_VERSION = '0.10.0'; +const LIB_VERSION = '0.10.1'; // Anonymous analytics are on by default; apps opt out via setTelemetryEnabled. let telemetryEnabled = true;