From 027a1660ed1440235c61b74e37b738cd2f897629 Mon Sep 17 00:00:00 2001 From: Jordan MacDonald Date: Mon, 19 Feb 2024 00:26:31 -0500 Subject: [PATCH] 0.8.4 --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8114fd0..90f9d60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +### 0.8.4 + +* Rename `Buffer::replace_content` method to just `replace` +* Re-implement `replace` as a proper operation, allowing it to be undone/redone +* Fix an issue from `0.8.3` where `Buffer::reload` would leave buffer flagged as modified + ### 0.8.3 * Add new `Buffer::replace_content` method to replace all content in-place diff --git a/Cargo.toml b/Cargo.toml index d653707..9060958 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ edition = "2021" name = "scribe" -version = "0.8.3" +version = "0.8.4" authors = ["Jordan MacDonald "] description = "Text editor toolkit." homepage = "https://github.com/jmacdonald/scribe"