@neuralfog/elemix-analyzer 0.9.0 → 0.9.1
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 +14 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/) when it s
|
|
|
8
8
|
> The [Roadmap](https://github.com/neuralfog/elemix/blob/main/ROADMAP.md) is the full
|
|
9
9
|
> log of development.
|
|
10
10
|
|
|
11
|
+
## [0.9.1] - 2026-07-28
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
15
|
+
- VS Code extension is back on the Marketplace under `0.9.1`. The `0.9.0` listing was
|
|
16
|
+
pulled, and the Marketplace permanently retires a removed extension's ID and burns every
|
|
17
|
+
version number it ever published (the pre-release `0.9.0` builds included), so `0.9.0`
|
|
18
|
+
can never be republished. `0.9.1` is the first clean version it will accept.
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
22
|
+
- Whole toolchain bumped to `0.9.1` in lockstep, so the editor extensions never drift from
|
|
23
|
+
the runtime version even when only the VS Code extension needed the re-release.
|
|
24
|
+
|
|
11
25
|
## [0.9.0] - 2026-07-27
|
|
12
26
|
|
|
13
27
|
### Changed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neuralfog/elemix-analyzer",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.1",
|
|
4
4
|
"description": "Template prop typechecker for Elemix (ec-analyzer)",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "brownhounds",
|
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
"CHANGELOG.md"
|
|
20
20
|
],
|
|
21
21
|
"optionalDependencies": {
|
|
22
|
-
"@neuralfog/elemix-analyzer-linux-x64": "0.9.
|
|
23
|
-
"@neuralfog/elemix-analyzer-linux-arm64": "0.9.
|
|
24
|
-
"@neuralfog/elemix-analyzer-darwin-x64": "0.9.
|
|
25
|
-
"@neuralfog/elemix-analyzer-darwin-arm64": "0.9.
|
|
26
|
-
"@neuralfog/elemix-analyzer-win32-x64": "0.9.
|
|
27
|
-
"@neuralfog/elemix-analyzer-win32-arm64": "0.9.
|
|
22
|
+
"@neuralfog/elemix-analyzer-linux-x64": "0.9.1",
|
|
23
|
+
"@neuralfog/elemix-analyzer-linux-arm64": "0.9.1",
|
|
24
|
+
"@neuralfog/elemix-analyzer-darwin-x64": "0.9.1",
|
|
25
|
+
"@neuralfog/elemix-analyzer-darwin-arm64": "0.9.1",
|
|
26
|
+
"@neuralfog/elemix-analyzer-win32-x64": "0.9.1",
|
|
27
|
+
"@neuralfog/elemix-analyzer-win32-arm64": "0.9.1"
|
|
28
28
|
}
|
|
29
29
|
}
|