Skip to content

Commit 1a2eb97

Browse files
authored
chore: release v0.2.6 (#412)
1 parent d22fdfa commit 1a2eb97

10 files changed

Lines changed: 42 additions & 33 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
# Changelog
22

33
Lisette is under active development. Any version before 1.0.0 may include breaking changes.
4+
## [0.2.6](https://github.com/ivov/lisette/compare/lisette-v0.2.5...lisette-v0.2.6) - 2026-05-16
5+
6+
- fix: resolve dotted go import paths [#419](https://github.com/ivov/lisette/pull/419) [`d22fdfa`](https://github.com/ivov/lisette/commit/d22fdfaa0bc78850c07c0130769379999294042f)
7+
- fix: tighten bit-flag detection in bindgen [#418](https://github.com/ivov/lisette/pull/418) [`7a3c6fd`](https://github.com/ivov/lisette/commit/7a3c6fd20034195fb28d32175ba43b6cb2a0f306)
8+
- refactor: restore emit cosmetics [#416](https://github.com/ivov/lisette/pull/416) [`57f60eb`](https://github.com/ivov/lisette/commit/57f60ebda8ad332de8e77434f97620a4f44b0136)
9+
- fix: dedupe blank-import diagnostic [#415](https://github.com/ivov/lisette/pull/415) [`6aa882b`](https://github.com/ivov/lisette/commit/6aa882b04b58195f209113b23f151eaef1aed3eb)
10+
- refactor: drop last cosmetic emit cleanup pass [#414](https://github.com/ivov/lisette/pull/414) [`8e41a3a`](https://github.com/ivov/lisette/commit/8e41a3a9195374606918f872b6352e4bca8b2e0d)
11+
- refactor: drop four cosmetic emit cleanup passes [#413](https://github.com/ivov/lisette/pull/413) [`ed30007`](https://github.com/ivov/lisette/commit/ed300078ea67500655a10e7bfd5bfae205280b63)
12+
- refactor: ast-level emit negation and fmt collapse [#411](https://github.com/ivov/lisette/pull/411) [`f0b3966`](https://github.com/ivov/lisette/commit/f0b3966580b23a38cd536211f181bbe8286c06a2)
413
## [0.2.5](https://github.com/ivov/lisette/compare/lisette-v0.2.4...lisette-v0.2.5) - 2026-05-14
514

615
- fix: track go import usage during emit [#410](https://github.com/ivov/lisette/pull/410) [`00d1b7a`](https://github.com/ivov/lisette/commit/00d1b7ab37daa2e0af24fb55e84622cb6e10a18c)

Cargo.lock

Lines changed: 10 additions & 10 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
@@ -15,7 +15,7 @@ members = [
1515
]
1616

1717
[workspace.package]
18-
version = "0.2.5"
18+
version = "0.2.6"
1919
edition = "2024"
2020
rust-version = "1.94"
2121
license = "MIT"

crates/cli/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ name = "lis"
2020
path = "src/main.rs"
2121

2222
[dependencies]
23-
semantics = { package = "lisette-semantics", version = "0.2.5", path = "../semantics" }
24-
syntax = { package = "lisette-syntax", version = "0.2.5", path = "../syntax" }
25-
diagnostics = { package = "lisette-diagnostics", version = "0.2.5", path = "../diagnostics" }
26-
format = { package = "lisette-format", version = "0.2.5", path = "../format" }
27-
emit = { package = "lisette-emit", version = "0.2.5", path = "../emit" }
28-
stdlib = { package = "lisette-stdlib", version = "0.2.5", path = "../stdlib" }
29-
deps = { package = "lisette-deps", version = "0.2.5", path = "../deps" }
30-
lsp = { package = "lisette-lsp", version = "0.2.5", path = "../lsp" }
23+
semantics = { package = "lisette-semantics", version = "0.2.6", path = "../semantics" }
24+
syntax = { package = "lisette-syntax", version = "0.2.6", path = "../syntax" }
25+
diagnostics = { package = "lisette-diagnostics", version = "0.2.6", path = "../diagnostics" }
26+
format = { package = "lisette-format", version = "0.2.6", path = "../format" }
27+
emit = { package = "lisette-emit", version = "0.2.6", path = "../emit" }
28+
stdlib = { package = "lisette-stdlib", version = "0.2.6", path = "../stdlib" }
29+
deps = { package = "lisette-deps", version = "0.2.6", path = "../deps" }
30+
lsp = { package = "lisette-lsp", version = "0.2.6", path = "../lsp" }
3131
tokio = { version = "1", features = ["rt-multi-thread", "io-std"] }
3232
tower-lsp = "0.20"
3333
fs2 = "0.4"

crates/deps/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-
stdlib = { package = "lisette-stdlib", version = "0.2.5", path = "../stdlib" }
16+
stdlib = { package = "lisette-stdlib", version = "0.2.6", path = "../stdlib" }
1717
toml = "0.9.10"
1818
toml_edit = "0.22"
1919
serde = { workspace = true, features = ["derive"] }

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.2.5", path = "../syntax" }
16+
syntax = { package = "lisette-syntax", version = "0.2.6", path = "../syntax" }
1717
miette.workspace = true
1818
owo-colors.workspace = true
1919
rustc-hash.workspace = true

crates/emit/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ doctest = false
1313
test = false
1414

1515
[dependencies]
16-
syntax = { package = "lisette-syntax", version = "0.2.5", path = "../syntax" }
17-
diagnostics = { package = "lisette-diagnostics", version = "0.2.5", path = "../diagnostics" }
16+
syntax = { package = "lisette-syntax", version = "0.2.6", path = "../syntax" }
17+
diagnostics = { package = "lisette-diagnostics", version = "0.2.6", path = "../diagnostics" }
1818
ecow.workspace = true
1919
rayon.workspace = true
2020
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.2.5", path = "../syntax" }
16+
syntax = { package = "lisette-syntax", version = "0.2.6", path = "../syntax" }
1717
unicode-segmentation = "1.11"

crates/lsp/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ doctest = false
1313
test = false
1414

1515
[dependencies]
16-
syntax = { package = "lisette-syntax", version = "0.2.5", path = "../syntax" }
17-
semantics = { package = "lisette-semantics", version = "0.2.5", path = "../semantics" }
18-
diagnostics = { package = "lisette-diagnostics", version = "0.2.5", path = "../diagnostics" }
19-
deps = { package = "lisette-deps", version = "0.2.5", path = "../deps" }
20-
format = { package = "lisette-format", version = "0.2.5", path = "../format" }
16+
syntax = { package = "lisette-syntax", version = "0.2.6", path = "../syntax" }
17+
semantics = { package = "lisette-semantics", version = "0.2.6", path = "../semantics" }
18+
diagnostics = { package = "lisette-diagnostics", version = "0.2.6", path = "../diagnostics" }
19+
deps = { package = "lisette-deps", version = "0.2.6", path = "../deps" }
20+
format = { package = "lisette-format", version = "0.2.6", path = "../format" }
2121
tower-lsp = "0.20"
2222
tokio = { version = "1", features = ["full"] }
2323
dashmap = "6"

crates/semantics/Cargo.toml

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

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

0 commit comments

Comments
 (0)