shortcutxl 0.2.17 → 0.2.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.18]
4
+
5
+ - **Fixed startup crash** — Resolved a circular import in the Python modules that caused "internal error" on every Excel action.
6
+
3
7
  ## [0.2.17]
4
8
 
5
9
  - **Better change review dialog** — Cell diffs now show full addresses (e.g. `Sheet1!A1`), formula details, and keyboard navigation with arrow keys for scrolling through large changesets.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shortcutxl",
3
- "version": "0.2.17",
3
+ "version": "0.2.18",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist/",
@@ -1,4 +1 @@
1
- """API layer — Workbook/Worksheet wrappers and supporting modules."""
2
-
3
- from shortcut_xl.api.workbook import Workbook as Workbook
4
- from shortcut_xl.api.worksheet import Worksheet as Worksheet
1
+ """API layer — Workbook/Worksheet wrappers and supporting modules."""