diff --git a/src/frontend/CHANGELOG.md b/src/frontend/CHANGELOG.md index c3c4341132..188953ee63 100644 --- a/src/frontend/CHANGELOG.md +++ b/src/frontend/CHANGELOG.md @@ -2,6 +2,10 @@ This file contains historical changelog information for the InvenTree UI components library. +### 0.10.0 - April 2026 + +Exposes the `importer` object to the plugin context, allow plugins to initialize a data import session using the data importer wizard. + ### 0.9.0 - March 2026 Exposes the `useMonitorBackgroundTask` hook, which allows plugins to monitor the status of a background task and display notifications when the task is complete. This is useful for plugins that offload long-running tasks to the background and want to provide feedback to the user when the task is complete. diff --git a/src/frontend/package.json b/src/frontend/package.json index 39f635c9a9..6c43c020f4 100644 --- a/src/frontend/package.json +++ b/src/frontend/package.json @@ -1,7 +1,7 @@ { "name": "@inventreedb/ui", "description": "UI components for the InvenTree project", - "version": "0.9.0", + "version": "0.10.0", "private": false, "type": "module", "license": "MIT",