Skip to content

Commit a525c59

Browse files
chore: release v0.1.6 (#38)
1 parent 09f7d2c commit a525c59

9 files changed

Lines changed: 40 additions & 27 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [0.1.6](https://github.com/ivov/lisette/compare/lisette-v0.1.5...lisette-v0.1.6) - 2026-04-09
4+
5+
### Feat
6+
7+
- add `completions` CLI command ([#39](https://github.com/ivov/lisette/pull/39))
8+
9+
### Fix
10+
11+
- minor cli adjustments ([#40](https://github.com/ivov/lisette/pull/40))
12+
- deduplicate diagnostics for const type annotations
13+
- deduplicate diagnostics for function signature annotations
14+
- resolve non-generic type aliases as qualifiers cross-module ([#37](https://github.com/ivov/lisette/pull/37))
15+
316
## [0.1.5](https://github.com/ivov/lisette/compare/lisette-v0.1.4...lisette-v0.1.5) - 2026-04-08
417

518
### Fixed

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ members = [
1414
]
1515

1616
[workspace.package]
17-
version = "0.1.5"
17+
version = "0.1.6"
1818
edition = "2024"
1919
rust-version = "1.94"
2020
license = "MIT"

crates/cli/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ name = "lis"
1818
path = "src/main.rs"
1919

2020
[dependencies]
21-
semantics = { package = "lisette-semantics", version = "0.1.5", path = "../semantics" }
22-
syntax = { package = "lisette-syntax", version = "0.1.5", path = "../syntax" }
23-
diagnostics = { package = "lisette-diagnostics", version = "0.1.5", path = "../diagnostics" }
24-
format = { package = "lisette-format", version = "0.1.5", path = "../format" }
25-
emit = { package = "lisette-emit", version = "0.1.5", path = "../emit" }
26-
stdlib = { package = "lisette-stdlib", version = "0.1.5", path = "../stdlib" }
27-
lsp = { package = "lisette-lsp", version = "0.1.5", path = "../lsp" }
21+
semantics = { package = "lisette-semantics", version = "0.1.6", path = "../semantics" }
22+
syntax = { package = "lisette-syntax", version = "0.1.6", path = "../syntax" }
23+
diagnostics = { package = "lisette-diagnostics", version = "0.1.6", path = "../diagnostics" }
24+
format = { package = "lisette-format", version = "0.1.6", path = "../format" }
25+
emit = { package = "lisette-emit", version = "0.1.6", path = "../emit" }
26+
stdlib = { package = "lisette-stdlib", version = "0.1.6", path = "../stdlib" }
27+
lsp = { package = "lisette-lsp", version = "0.1.6", path = "../lsp" }
2828
tokio = { version = "1", features = ["rt-multi-thread", "io-std"] }
2929
tower-lsp = "0.20"
3030
owo-colors.workspace = true

crates/diagnostics/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ doctest = false
1313
test = false
1414

1515
[dependencies]
16-
syntax = { package = "lisette-syntax", version = "0.1.5", path = "../syntax" }
16+
syntax = { package = "lisette-syntax", version = "0.1.6", path = "../syntax" }
1717
ecow.workspace = true
1818
miette.workspace = true
1919
owo-colors.workspace = true

crates/emit/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ doctest = false
1313
test = false
1414

1515
[dependencies]
16-
syntax = { package = "lisette-syntax", version = "0.1.5", path = "../syntax" }
16+
syntax = { package = "lisette-syntax", version = "0.1.6", path = "../syntax" }
1717
ecow.workspace = true
1818
rustc-hash.workspace = true

crates/format/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ doctest = false
1313
test = false
1414

1515
[dependencies]
16-
syntax = { package = "lisette-syntax", version = "0.1.5", path = "../syntax" }
16+
syntax = { package = "lisette-syntax", version = "0.1.6", path = "../syntax" }
1717
unicode-segmentation = "1.11"

crates/lsp/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ name = "lisette-lsp"
1717
path = "src/main.rs"
1818

1919
[dependencies]
20-
syntax = { package = "lisette-syntax", version = "0.1.5", path = "../syntax" }
21-
semantics = { package = "lisette-semantics", version = "0.1.5", path = "../semantics" }
22-
diagnostics = { package = "lisette-diagnostics", version = "0.1.5", path = "../diagnostics" }
23-
format = { package = "lisette-format", version = "0.1.5", path = "../format" }
20+
syntax = { package = "lisette-syntax", version = "0.1.6", path = "../syntax" }
21+
semantics = { package = "lisette-semantics", version = "0.1.6", path = "../semantics" }
22+
diagnostics = { package = "lisette-diagnostics", version = "0.1.6", path = "../diagnostics" }
23+
format = { package = "lisette-format", version = "0.1.6", path = "../format" }
2424
ecow.workspace = true
2525
tower-lsp = "0.20"
2626
tokio = { version = "1", features = ["full"] }

crates/semantics/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ repository.workspace = true
1212
doctest = false
1313

1414
[dependencies]
15-
syntax = { package = "lisette-syntax", version = "0.1.5", path = "../syntax", features = ["serde"] }
16-
diagnostics = { package = "lisette-diagnostics", version = "0.1.5", path = "../diagnostics" }
17-
stdlib = { package = "lisette-stdlib", version = "0.1.5", path = "../stdlib" }
15+
syntax = { package = "lisette-syntax", version = "0.1.6", path = "../syntax", features = ["serde"] }
16+
diagnostics = { package = "lisette-diagnostics", version = "0.1.6", path = "../diagnostics" }
17+
stdlib = { package = "lisette-stdlib", version = "0.1.6", path = "../stdlib" }
1818
serde = { version = "1", features = ["derive"] }
1919
bincode = "1"
2020
ecow = "0.2"

0 commit comments

Comments
 (0)