Bump version to 3.4.0#49
Merged
Merged
Conversation
Minor bump per docs/versioning.md rule 1 (grammar/language-level change bumps the minor): this release adds `[...]` list literals and qualified `default alias/Type` type names, plus the new diagnostics `allium.list.mixedElementTypes`, `allium.list.emptyListNoElementType`, and `allium.default.unknownField` (local + cross-module default drift detection). Updates the four policy-managed manifests (Cargo workspace, root package.json, allium-lsp, allium-vscode) via scripts/version-bump.sh and resyncs Cargo.lock. The Allium language version marker stays at 3 (no major language change). The allium-parser-wasm package is a generated artifact (gitignored) and inherits the version when rebuilt. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Minor version bump for the list-literals + default-drift work merged this cycle (#45, #46, #48).
Per
docs/versioning.mdrule 1 — "a grammar or language-level change bumps the minor (or major) version" — this is a minor (3.3.0 → 3.4.0), not a patch: it adds[...]list literals and qualifieddefault alias/Typesyntax, plus new diagnostics (allium.list.mixedElementTypes,allium.list.emptyListNoElementType,allium.default.unknownField).scripts/version-bump.sh 3.4.0(Cargo workspace, rootpackage.json, allium-lsp, allium-vscode) and resyncsCargo.lock. Rule 4 (Cargo ⇔ rootpackage.json) holds — all four read3.4.0.3— no major language change (consistent with the decision to hold the language version).allium-parser-wasmis a gitignored generated artifact; it inherits the version when rebuilt by CI/release.cargo test --workspacegreen;--versionreadsCARGO_PKG_VERSIONso no hardcoded string to update.Release note for 3.4.0: the three new error-severity diagnostics can make specs that previously checked clean now fail (real drift / heterogeneous lists / empty-list targets) — worth surfacing to downstream CI.
🤖 Generated with Claude Code