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
6 changes: 0 additions & 6 deletions .sampo/changesets/report-foundation.md

This file was deleted.

10 changes: 0 additions & 10 deletions .sampo/changesets/report-wiring.md

This file was deleted.

16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions crates/nash-can/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# nash-can

## 0.6.1 — 2026-09-10

### Patch changes

- [b7ff823](https://github.com/orbistry/nash/commit/b7ff823b144beb39d5cc355052710b7032f0509e) Collect independent compiler errors with dependency-aware recovery, retain failed module dependencies, and render owned diagnostics in the terminal, JSON, and language server. Preserve trait-method call names in error context. Add JSON and warning controls to `nash check`, and publish diagnostics for unsaved editor buffers with UTF-16 ranges. — Thanks @MicroProofs!
- Updated dependencies: nash-parse@0.5.1

## 0.6.0 — 2026-09-10

### Minor changes
Expand Down
4 changes: 2 additions & 2 deletions crates/nash-can/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nash-can"
version = "0.6.0"
version = "0.6.1"
edition.workspace = true
description = "Canonicalize a nash source tree, resolving symbols, re-ordering definitions, and preparing a module for type inference."
homepage.workspace = true
Expand All @@ -16,4 +16,4 @@ nash-source = { path = "../nash-source", version = "0.6.0" }
[dev-dependencies]
indoc.workspace = true
insta.workspace = true
nash-parse = { path = "../nash-parse", version = "0.5.0" }
nash-parse = { path = "../nash-parse", version = "0.5.1" }
10 changes: 10 additions & 0 deletions crates/nash-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# nash-cli

## 0.3.0 — 2026-09-10

### Minor changes

- [b7ff823](https://github.com/orbistry/nash/commit/b7ff823b144beb39d5cc355052710b7032f0509e) Collect independent compiler errors with dependency-aware recovery, retain failed module dependencies, and render owned diagnostics in the terminal, JSON, and language server. Preserve trait-method call names in error context. Add JSON and warning controls to `nash check`, and publish diagnostics for unsaved editor buffers with UTF-16 ranges. — Thanks @MicroProofs!

### Patch changes

- Updated dependencies: nash-driver@0.5.0, nash-language-server@0.3.0, nash-report@0.2.0

## 0.2.6 — 2026-09-10

### Patch changes
Expand Down
8 changes: 4 additions & 4 deletions crates/nash-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nash-cli"
version = "0.2.6"
version = "0.3.0"
edition.workspace = true
description = "The Nash programming language"
homepage.workspace = true
Expand All @@ -23,9 +23,9 @@ futures.workspace = true
miette.workspace = true
serde_json.workspace = true
nash-config = { path = "../nash-config", version = "0.3.0" }
nash-report = { path = "../nash-report", version = "0.1.0" }
nash-driver = { path = "../nash-driver", version = "0.4.0" }
nash-language-server = { path = "../nash-language-server", version = "0.2.0" }
nash-report = { path = "../nash-report", version = "0.2.0" }
nash-driver = { path = "../nash-driver", version = "0.5.0" }
nash-language-server = { path = "../nash-language-server", version = "0.3.0" }
octocrab.workspace = true
tar.workspace = true
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "io-std"] }
Expand Down
6 changes: 6 additions & 0 deletions crates/nash-constrain/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# nash-constrain

## 0.4.1 — 2026-09-10

### Patch changes

- [b7ff823](https://github.com/orbistry/nash/commit/b7ff823b144beb39d5cc355052710b7032f0509e) Collect independent compiler errors with dependency-aware recovery, retain failed module dependencies, and render owned diagnostics in the terminal, JSON, and language server. Preserve trait-method call names in error context. Add JSON and warning controls to `nash check`, and publish diagnostics for unsaved editor buffers with UTF-16 ranges. — Thanks @MicroProofs!

## 0.4.0 — 2026-09-10

### Minor changes
Expand Down
2 changes: 1 addition & 1 deletion crates/nash-constrain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nash-constrain"
version = "0.4.0"
version = "0.4.1"
edition.workspace = true
description = """
Responsible for building the set of constraints that are used \
Expand Down
10 changes: 10 additions & 0 deletions crates/nash-driver/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# nash-driver

## 0.5.0 — 2026-09-10

### Minor changes

- [b7ff823](https://github.com/orbistry/nash/commit/b7ff823b144beb39d5cc355052710b7032f0509e) Collect independent compiler errors with dependency-aware recovery, retain failed module dependencies, and render owned diagnostics in the terminal, JSON, and language server. Preserve trait-method call names in error context. Add JSON and warning controls to `nash check`, and publish diagnostics for unsaved editor buffers with UTF-16 ranges. — Thanks @MicroProofs!

### Patch changes

- Updated dependencies: nash-can@0.6.1, nash-constrain@0.4.1, nash-parse@0.5.1, nash-report@0.2.0, nash-solve@0.4.1

## 0.4.0 — 2026-09-10

### Minor changes
Expand Down
12 changes: 6 additions & 6 deletions crates/nash-driver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nash-driver"
version = "0.4.0"
version = "0.5.0"
edition.workspace = true
description = "Build system and driver for Nash projects"
homepage.workspace = true
Expand All @@ -21,12 +21,12 @@ url.workspace = true
nash-config = { path = "../nash-config", version = "0.3.0" }
nash-nitpick = { path = "../nash-nitpick", version = "0.2.0" }
nash-ast = { path = "../nash-ast", version = "0.7.0" }
nash-can = { path = "../nash-can", version = "0.6.0" }
nash-constrain = { path = "../nash-constrain", version = "0.4.0" }
nash-parse = { path = "../nash-parse", version = "0.5.0" }
nash-report = { path = "../nash-report", version = "0.1.0" }
nash-can = { path = "../nash-can", version = "0.6.1" }
nash-constrain = { path = "../nash-constrain", version = "0.4.1" }
nash-parse = { path = "../nash-parse", version = "0.5.1" }
nash-report = { path = "../nash-report", version = "0.2.0" }
nash-region = { path = "../nash-region", version = "0.2.0" }
nash-solve = { path = "../nash-solve", version = "0.4.0" }
nash-solve = { path = "../nash-solve", version = "0.4.1" }
nash-source = { path = "../nash-source", version = "0.6.0" }

[dev-dependencies]
Expand Down
10 changes: 10 additions & 0 deletions crates/nash-language-server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# nash-language-server

## 0.3.0 — 2026-09-10

### Minor changes

- [b7ff823](https://github.com/orbistry/nash/commit/b7ff823b144beb39d5cc355052710b7032f0509e) Collect independent compiler errors with dependency-aware recovery, retain failed module dependencies, and render owned diagnostics in the terminal, JSON, and language server. Preserve trait-method call names in error context. Add JSON and warning controls to `nash check`, and publish diagnostics for unsaved editor buffers with UTF-16 ranges. — Thanks @MicroProofs!

### Patch changes

- Updated dependencies: nash-driver@0.5.0, nash-report@0.2.0

## 0.2.0 — 2026-03-10

### Minor changes
Expand Down
6 changes: 3 additions & 3 deletions crates/nash-language-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nash-language-server"
version = "0.2.0"
version = "0.3.0"
edition.workspace = true
description = "Language server for the nash programming language"
homepage.workspace = true
Expand All @@ -9,8 +9,8 @@ license.workspace = true

[dependencies]
tower-lsp-server.workspace = true
nash-driver = { path = "../nash-driver", version = "0.4.0" }
nash-report = { path = "../nash-report", version = "0.1.0" }
nash-driver = { path = "../nash-driver", version = "0.5.0" }
nash-report = { path = "../nash-report", version = "0.2.0" }
nash-region = { path = "../nash-region", version = "0.2.0" }
serde_json.workspace = true
tokio.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/nash-parse/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# nash-parse

## 0.5.1 — 2026-09-10

### Patch changes

- [b7ff823](https://github.com/orbistry/nash/commit/b7ff823b144beb39d5cc355052710b7032f0509e) Add compiler report documents, source spans, terminal rendering and name suggestions. Expose parser token classifiers and preserve nested parse errors for diagnostics. — Thanks @MicroProofs!

## 0.5.0 — 2026-09-10

### Minor changes
Expand Down
2 changes: 1 addition & 1 deletion crates/nash-parse/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nash-parse"
version = "0.5.0"
version = "0.5.1"
edition.workspace = true
description = "Parser for the nash programming language"
homepage.workspace = true
Expand Down
12 changes: 12 additions & 0 deletions crates/nash-report/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# nash-report

## 0.2.0 — 2026-09-10

### Minor changes

- [b7ff823](https://github.com/orbistry/nash/commit/b7ff823b144beb39d5cc355052710b7032f0509e) Add compiler report documents, source spans, terminal rendering and name suggestions. Expose parser token classifiers and preserve nested parse errors for diagnostics. — Thanks @MicroProofs!

### Patch changes

- Updated dependencies: nash-can@0.6.1, nash-constrain@0.4.1, nash-parse@0.5.1, nash-solve@0.4.1

10 changes: 5 additions & 5 deletions crates/nash-report/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nash-report"
version = "0.1.0"
version = "0.2.0"
edition.workspace = true
description = "Error reports for the Nash compiler: Elm's prose rendered with miette"
homepage.workspace = true
Expand All @@ -13,15 +13,15 @@ unicode-width = "0.1.14"
serde.workspace = true
serde_json.workspace = true
nash-ast = { path = "../nash-ast", version = "0.7.0" }
nash-can = { path = "../nash-can", version = "0.6.0" }
nash-constrain = { path = "../nash-constrain", version = "0.4.0" }
nash-can = { path = "../nash-can", version = "0.6.1" }
nash-constrain = { path = "../nash-constrain", version = "0.4.1" }
nash-nitpick = { path = "../nash-nitpick", version = "0.2.0" }
nash-parse = { path = "../nash-parse", version = "0.5.0" }
nash-parse = { path = "../nash-parse", version = "0.5.1" }
nash-region = { path = "../nash-region", version = "0.2.0" }
nash-source = { path = "../nash-source", version = "0.6.0" }

[dev-dependencies]
bumpalo.workspace = true
indoc.workspace = true
insta.workspace = true
nash-solve = { path = "../nash-solve", version = "0.4.0" }
nash-solve = { path = "../nash-solve", version = "0.4.1" }
7 changes: 7 additions & 0 deletions crates/nash-solve/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# nash-solve

## 0.4.1 — 2026-09-10

### Patch changes

- [b7ff823](https://github.com/orbistry/nash/commit/b7ff823b144beb39d5cc355052710b7032f0509e) Collect independent compiler errors with dependency-aware recovery, retain failed module dependencies, and render owned diagnostics in the terminal, JSON, and language server. Preserve trait-method call names in error context. Add JSON and warning controls to `nash check`, and publish diagnostics for unsaved editor buffers with UTF-16 ranges. — Thanks @MicroProofs!
- Updated dependencies: nash-can@0.6.1, nash-constrain@0.4.1, nash-parse@0.5.1

## 0.4.0 — 2026-09-10

### Minor changes
Expand Down
8 changes: 4 additions & 4 deletions crates/nash-solve/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nash-solve"
version = "0.4.0"
version = "0.4.1"
edition.workspace = true
description = "The entry point of nash's type inference system. Implements type inference and specialization of traits."
homepage.workspace = true
Expand All @@ -10,12 +10,12 @@ license.workspace = true
[dependencies]
bumpalo.workspace = true
nash-ast = { path = "../nash-ast", version = "0.7.0" }
nash-can = { path = "../nash-can", version = "0.6.0" }
nash-constrain = { path = "../nash-constrain", version = "0.4.0" }
nash-can = { path = "../nash-can", version = "0.6.1" }
nash-constrain = { path = "../nash-constrain", version = "0.4.1" }
nash-region = { path = "../nash-region", version = "0.2.0" }

[dev-dependencies]
indoc.workspace = true
insta.workspace = true
nash-parse = { path = "../nash-parse", version = "0.5.0" }
nash-parse = { path = "../nash-parse", version = "0.5.1" }
nash-source = { path = "../nash-source", version = "0.6.0" }
Loading