diff --git a/CHANGELOG.md b/CHANGELOG.md index c57601c..3ae0a05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,18 @@ -## [0.2.5] +## [0.2.6] + +### 🐛 Bug Fixes + +- *(tui)* Allow concurrent standalone tasks (#37) + +### 🚜 Refactor + +- *(tui)* Extract mode renderers and preserve viewport (#34) +- *(tui)* Separate content cache preparation (#36) + +### ⚡ Performance + +- *(tui)* Batch and reuse syntax highlights (#35) +## [v0.2.5] ### 🚀 Features @@ -29,6 +43,7 @@ - *(release)* Bump version to 0.2.3 (#23) - *(release)* Bump version to 0.2.4 (#28) +- *(release)* Bump version to 0.2.5 (#33) ## [v0.2.2] ### 🚀 Features diff --git a/Cargo.lock b/Cargo.lock index 46d143c..ef4a6ad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2898,7 +2898,7 @@ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" [[package]] name = "upmd" -version = "0.2.5" +version = "0.2.6" dependencies = [ "anyhow", "arboard", diff --git a/Cargo.toml b/Cargo.toml index 217d723..c105280 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "upmd" description = "Run tasks and dependency-aware workflows from Markdown in a real terminal" -version = "0.2.5" +version = "0.2.6" edition = "2021" rust-version = "1.82" repository = "https://github.com/rezigned/upmd"