diff --git a/CHANGELOG.md b/CHANGELOG.md index 595d8fb..d9f1927 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,8 @@ Procedure when bumping the version number: ## Unreleased +## v0.8.2 - 2024-04-25 + ### Changed - Renamed `json-stream` export format to `json-lines` (see ) - Changed `json-lines` file extension from `.json` to `.jsonl` diff --git a/CONFIG.md b/CONFIG.md index af50003..66625d0 100644 --- a/CONFIG.md +++ b/CONFIG.md @@ -614,7 +614,7 @@ Enabling this makes rendering a bit slower but more accurate. The screen might also flash when encountering new characters (or, more accurately, graphemes). -See also the `--measure-graphemes` command line option. +See also the `--measure-widths` command line option. ### `offline` diff --git a/Cargo.lock b/Cargo.lock index 08bbc62..441e80e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -277,7 +277,7 @@ checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" [[package]] name = "cove" -version = "0.8.1" +version = "0.8.2" dependencies = [ "anyhow", "async-trait", @@ -308,7 +308,7 @@ dependencies = [ [[package]] name = "cove-config" -version = "0.8.1" +version = "0.8.2" dependencies = [ "cove-input", "cove-macro", @@ -319,7 +319,7 @@ dependencies = [ [[package]] name = "cove-input" -version = "0.8.1" +version = "0.8.2" dependencies = [ "cove-macro", "crossterm", @@ -333,7 +333,7 @@ dependencies = [ [[package]] name = "cove-macro" -version = "0.8.1" +version = "0.8.2" dependencies = [ "case", "proc-macro2", diff --git a/Cargo.toml b/Cargo.toml index c3b37a1..178b652 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ resolver = "2" members = ["cove", "cove-*"] [workspace.package] -version = "0.8.1" +version = "0.8.2" edition = "2021" [workspace.dependencies]