umple-lsp-server 1.0.0 → 1.0.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 +5 -0
- package/README.md +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.0.1 - 2026-04-29
|
|
4
|
+
|
|
5
|
+
- Added GitHub Actions Trusted Publishing release infrastructure for future npm publishes.
|
|
6
|
+
- Updated release documentation for maintainer handoff. No runtime LSP behavior changes from 1.0.0.
|
|
7
|
+
|
|
3
8
|
## 1.0.0 - 2026-04-29
|
|
4
9
|
|
|
5
10
|
- Added broader semantic coverage across completion, hover, go-to-definition, references, rename, workspace symbols, inlay hints, semantic tokens, and code actions.
|
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@ umple-lsp-server --stdio
|
|
|
22
22
|
|
|
23
23
|
## Release Notes
|
|
24
24
|
|
|
25
|
-
Current release: `1.0.
|
|
25
|
+
Current release: `1.0.1`
|
|
26
26
|
|
|
27
27
|
Highlights:
|
|
28
28
|
|
|
@@ -31,5 +31,6 @@ Highlights:
|
|
|
31
31
|
- Formatter safety checks and focused formatting improvements for parser-visible structural syntax.
|
|
32
32
|
- Expanded Tree-sitter grammar and query coverage backed by corpus checks.
|
|
33
33
|
- Trace transition event symbols: `trace transition flip;` now resolves, references, hovers, and completes class-scoped transition events.
|
|
34
|
+
- Release infrastructure now supports GitHub Actions Trusted Publishing for future npm releases.
|
|
34
35
|
|
|
35
36
|
See `CHANGELOG.md` in this package and the upstream repository wiki for the full release history and publishing notes.
|