From 513d77ca00734fc32144ff9b9f159b2a1df22ae1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20S=C5=82uszniak?= Date: Wed, 9 Sep 2026 19:26:46 +0200 Subject: [PATCH] Release v0.10.1 --- packages/react-native-executorch/package.json | 2 +- packages/react-native-executorch/src/fetcher/telemetry.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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;