Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ body:
id: version
attributes:
label: Heddle version
placeholder: e.g. 4.0.2
placeholder: e.g. 1.0.0
validations:
required: true
- type: input
Expand Down
4 changes: 3 additions & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ The engine is published as two NuGet packages:
| `Heddle` | [src/Heddle](../src/Heddle) | Core engine: parser host, compiler, runtime, built‑in extensions. |
| `Heddle.Language` | [src/Heddle.Language](../src/Heddle.Language) | ANTLR grammar + generated lexer/parser, plus editor (Ace) assets. |

Current version: **4.0.2** (see [src/Heddle/Heddle.csproj](../src/Heddle/Heddle.csproj)).
Current version: **1.0.0**. The published version always follows the latest
[release tag](https://github.com/multiarc/Heddle/releases) /
[nuget.org](https://www.nuget.org/packages/Heddle).

---

Expand Down
3 changes: 2 additions & 1 deletion docs/building.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ dotnet test src/Heddle.Tests

All shipping projects use `LangVersion=latest` and are **strong‑name signed** with
`heddle.snk` (`SignAssembly=true`, `AssemblyOriginatorKeyFile=..\..\heddle.snk`).
Current package version is **4.0.2** (with an optional `$(VersionSuffix)`).
The initial public release is **1.0.0**; the published version is set from the release tag
(`vX.Y.Z`) at publish time, so the version in the source tree is just a placeholder.

### Key dependencies

Expand Down
Loading