Bump version to 0.8.2

This commit is contained in:
Joscha 2024-04-25 20:45:00 +02:00
parent d3666674b2
commit db734c5740
4 changed files with 8 additions and 6 deletions

View file

@ -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 <https://jsonlines.org/>)
- Changed `json-lines` file extension from `.json` to `.jsonl`

View file

@ -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`

8
Cargo.lock generated
View file

@ -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",

View file

@ -3,7 +3,7 @@ resolver = "2"
members = ["cove", "cove-*"]
[workspace.package]
version = "0.8.1"
version = "0.8.2"
edition = "2021"
[workspace.dependencies]