Skip to content

Commit f2a8005

Browse files
chore: release v0.1.4 (#24)
1 parent fade567 commit f2a8005

9 files changed

Lines changed: 45 additions & 27 deletions

File tree

CHANGELOG.md

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

3+
## [0.1.4](https://github.com/ivov/lisette/compare/lisette-v0.1.3...lisette-v0.1.4) - 2026-04-07
4+
5+
### Added
6+
7+
- *(editors)* add info for helix ([#21](https://github.com/ivov/lisette/pull/21))
8+
9+
### Fixed
10+
11+
- add typo suggestions for CLI subcommands ([#23](https://github.com/ivov/lisette/pull/23))
12+
- support octal escape sequences ([#22](https://github.com/ivov/lisette/pull/22))
13+
- ice when calling generic type as function ([#28](https://github.com/ivov/lisette/pull/28))
14+
- skip auto-generated stringer on user string + goString
15+
- swap string method for go string method ([#17](https://github.com/ivov/lisette/pull/17))
16+
17+
### Other
18+
19+
- bump stdlib typedefs to v0.1.4
20+
321
## [0.1.3](https://github.com/ivov/lisette/compare/lisette-v0.1.2...lisette-v0.1.3) - 2026-04-06
422

523
### Added

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.3"
17+
version = "0.1.4"
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.3", path = "../semantics" }
22-
syntax = { package = "lisette-syntax", version = "0.1.3", path = "../syntax" }
23-
diagnostics = { package = "lisette-diagnostics", version = "0.1.3", path = "../diagnostics" }
24-
format = { package = "lisette-format", version = "0.1.3", path = "../format" }
25-
emit = { package = "lisette-emit", version = "0.1.3", path = "../emit" }
26-
stdlib = { package = "lisette-stdlib", version = "0.1.3", path = "../stdlib" }
27-
lsp = { package = "lisette-lsp", version = "0.1.3", path = "../lsp" }
21+
semantics = { package = "lisette-semantics", version = "0.1.4", path = "../semantics" }
22+
syntax = { package = "lisette-syntax", version = "0.1.4", path = "../syntax" }
23+
diagnostics = { package = "lisette-diagnostics", version = "0.1.4", path = "../diagnostics" }
24+
format = { package = "lisette-format", version = "0.1.4", path = "../format" }
25+
emit = { package = "lisette-emit", version = "0.1.4", path = "../emit" }
26+
stdlib = { package = "lisette-stdlib", version = "0.1.4", path = "../stdlib" }
27+
lsp = { package = "lisette-lsp", version = "0.1.4", 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.3", path = "../syntax" }
16+
syntax = { package = "lisette-syntax", version = "0.1.4", 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.3", path = "../syntax" }
16+
syntax = { package = "lisette-syntax", version = "0.1.4", 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.3", path = "../syntax" }
16+
syntax = { package = "lisette-syntax", version = "0.1.4", 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.3", path = "../syntax" }
21-
semantics = { package = "lisette-semantics", version = "0.1.3", path = "../semantics" }
22-
diagnostics = { package = "lisette-diagnostics", version = "0.1.3", path = "../diagnostics" }
23-
format = { package = "lisette-format", version = "0.1.3", path = "../format" }
20+
syntax = { package = "lisette-syntax", version = "0.1.4", path = "../syntax" }
21+
semantics = { package = "lisette-semantics", version = "0.1.4", path = "../semantics" }
22+
diagnostics = { package = "lisette-diagnostics", version = "0.1.4", path = "../diagnostics" }
23+
format = { package = "lisette-format", version = "0.1.4", 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.3", path = "../syntax", features = ["serde"] }
16-
diagnostics = { package = "lisette-diagnostics", version = "0.1.3", path = "../diagnostics" }
17-
stdlib = { package = "lisette-stdlib", version = "0.1.3", path = "../stdlib" }
15+
syntax = { package = "lisette-syntax", version = "0.1.4", path = "../syntax", features = ["serde"] }
16+
diagnostics = { package = "lisette-diagnostics", version = "0.1.4", path = "../diagnostics" }
17+
stdlib = { package = "lisette-stdlib", version = "0.1.4", path = "../stdlib" }
1818
serde = { version = "1", features = ["derive"] }
1919
bincode = "1"
2020
ecow = "0.2"

0 commit comments

Comments
 (0)