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"