diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c06033f..097db783 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +### 0.4.1 + +* Fixed syntax highlighting + * Scopes were bleeding into one another; we now defer to HighlightIterator + * See https://github.com/jmacdonald/amp/issues/22 for details + ### 0.4.0 * Application event loop is now threaded diff --git a/Cargo.lock b/Cargo.lock index 5d90d0f9..bd452804 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -16,7 +16,7 @@ dependencies = [ [[package]] name = "amp" -version = "0.4.0" +version = "0.4.1" dependencies = [ "app_dirs 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", "bloodhound 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 76ed3eed..f955b266 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "amp" -version = "0.4.0" +version = "0.4.1" authors = ["Jordan MacDonald "] description = "A complete text editor for your terminal." homepage = "https://amp.rs"