Skip to content

Commit f3ce092

Browse files
committed
release: v0.8.7
1 parent dc4cc10 commit f3ce092

13 files changed

Lines changed: 46 additions & 27 deletions

File tree

CHANGELOG.md

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

3+
## 0.8.7 - 2026-05-19
4+
5+
### Features
6+
7+
- update prefix keymaps with hints (`9c21c4d3`)
8+
- centralized the UI and syntax color to theme file (`d68a9cda`)
9+
- centralize command metadata for command palette upgrade (`dc4cc108`)
10+
11+
12+
### Fixes
13+
14+
- sanitize and normalize line endings on paste (`9fb76665`)
15+
16+
17+
### Tests
18+
19+
- update the flaky test on ci linux (`d30e86e1`)
20+
21+
322
## 0.8.6 - 2026-05-19
423

524
### CI

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: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,10 @@ url = "2.5.8"
8383
wasmtime = { version = "44.0.0", default-features = false, features = ["cranelift", "runtime", "std", "wat"] }
8484
windows-sys = { version = "0.61.2", features = ["Win32_Foundation", "Win32_System_JobObjects", "Win32_System_Threading"] }
8585

86-
xi-core-lib = { package = "ee-xi-core-lib", path = "crates/xi-core-lib", version = "0.8.6" }
87-
xi-plugin-derive = { package = "ee-xi-plugin-derive", path = "crates/xi-plugin-derive", version = "0.8.6" }
88-
xi-plugin-lib = { package = "ee-xi-plugin-lib", path = "crates/xi-plugin-lib", version = "0.8.6" }
89-
xi-rope = { package = "ee-xi-rope", path = "crates/xi-rope", version = "0.8.6" }
90-
xi-rpc = { package = "ee-xi-rpc", path = "crates/xi-rpc", version = "0.8.6" }
91-
xi-unicode = { package = "ee-xi-unicode", path = "crates/xi-unicode", version = "0.8.6" }
92-
xi-lsp-lib = { package = "ee-xi-lsp-lib", path = "crates/xi-lsp-lib", version = "0.8.6" }
86+
xi-core-lib = { package = "ee-xi-core-lib", path = "crates/xi-core-lib", version = "0.8.7" }
87+
xi-plugin-derive = { package = "ee-xi-plugin-derive", path = "crates/xi-plugin-derive", version = "0.8.7" }
88+
xi-plugin-lib = { package = "ee-xi-plugin-lib", path = "crates/xi-plugin-lib", version = "0.8.7" }
89+
xi-rope = { package = "ee-xi-rope", path = "crates/xi-rope", version = "0.8.7" }
90+
xi-rpc = { package = "ee-xi-rpc", path = "crates/xi-rpc", version = "0.8.7" }
91+
xi-unicode = { package = "ee-xi-unicode", path = "crates/xi-unicode", version = "0.8.7" }
92+
xi-lsp-lib = { package = "ee-xi-lsp-lib", path = "crates/xi-lsp-lib", version = "0.8.7" }

crates/ee-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ee-cli"
3-
version = "0.8.6"
3+
version = "0.8.7"
44
license = "Apache-2.0"
55
authors = ["Edward Fitz Abucay <gh:ffimnsr>"]
66
description = "Large file viewer and editor for the terminal, built on top of xi-core backend."

crates/ee-ts-test-grammars/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ee-ts-test-grammars"
3-
version = "0.8.6"
3+
version = "0.8.7"
44
license = "Apache-2.0"
55
edition.workspace = true
66
rust-version.workspace = true

crates/xi-core-lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ee-xi-core-lib"
3-
version = "0.8.6"
3+
version = "0.8.7"
44
license = "Apache-2.0"
55
authors = ["Raph Levien <raph@google.com>", "Edward Fitz Abucay <gh:ffimnsr>"]
66
description = "Library module for xi-core"

crates/xi-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ee-xi-core"
3-
version = "0.8.6"
3+
version = "0.8.7"
44
license = "Apache-2.0"
55
authors = ["Raph Levien <raph@google.com>", "Edward Fitz Abucay <gh:ffimnsr>"]
66
description = "Main process for xi-core, based on json-rpc"

crates/xi-lsp-lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ee-xi-lsp-lib"
3-
version = "0.8.6"
3+
version = "0.8.7"
44
license = "Apache-2.0"
55
repository = "https://github.com/ffimnsr/ee"
66
description = "The base library for implementing LSP Plugins for Xi"

crates/xi-plugin-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ee-xi-plugin-derive"
3-
version = "0.8.6"
3+
version = "0.8.7"
44
license = "Apache-2.0"
55
authors = ["Edward Fitz Abucay <gh:ffimnsr>"]
66
repository = "https://github.com/ffimnsr/ee"

crates/xi-plugin-lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ee-xi-plugin-lib"
3-
version = "0.8.6"
3+
version = "0.8.7"
44
license = "Apache-2.0"
55
authors = ["Raph Levien <raph@google.com>", "Edward Fitz Abucay <gh:ffimnsr>"]
66
repository = "https://github.com/ffimnsr/ee"

0 commit comments

Comments
 (0)