@neocompose/cli 0.17.0 → 0.18.0
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 +12 -0
- package/dist/neo.mjs +2657 -60
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.18.0] - 2026-07-31
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- Compile C#-style counted `for` loops and `foreach (T item in Items)` loops,
|
|
8
|
+
including `break`, `continue`, fresh iteration scopes, and stable collection
|
|
9
|
+
membership.
|
|
10
|
+
- Compile `switch` statements with typed constant and `null` cases, stacked
|
|
11
|
+
labels, a single `default`, and C#-style section termination rules.
|
|
12
|
+
- Compile string-based `try`/`catch` statements, including ordered catch
|
|
13
|
+
filters, readonly caught-message bindings, and bare rethrow.
|
|
14
|
+
|
|
3
15
|
## [0.17.0] - 2026-07-31
|
|
4
16
|
|
|
5
17
|
### Added
|