From f86f7b39b49ac9a0630694d80405b096c5f60b35 Mon Sep 17 00:00:00 2001 From: Jordan MacDonald Date: Tue, 29 Oct 2024 21:14:07 -0400 Subject: [PATCH] 0.8.5 --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 90f9d60..e0d757e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +### 0.8.5 + +* Add new `Workspace::buffer_paths` method to list all buffer paths in the + workspace. +* Add new `Workspace::current_buffer_index` method, which when combined with the + `buffer_paths` method above, can be used to highlight the current buffer + filename and/or path. + ### 0.8.4 * Rename `Buffer::replace_content` method to just `replace` diff --git a/Cargo.toml b/Cargo.toml index 9060958..3b5bd01 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ edition = "2021" name = "scribe" -version = "0.8.4" +version = "0.8.5" authors = ["Jordan MacDonald "] description = "Text editor toolkit." homepage = "https://github.com/jmacdonald/scribe"