diff --git a/CHANGELOG.md b/CHANGELOG.md index 60705ef8..302b7aec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +### 0.7.1 + +* Added build revision to splash screen +* Updated justify command to switch to normal mode after completion +* Fixed an issue where justify command would strip trailing newline +* Added support for multiple line length guides +* Added the ability to run formatting tools, optionally on save +* Fixed an issue where long paths in open mode would wrap/break UI +* Stopped printing background colors, allowing transparent terminal backgrounds + ### 0.7.0 * Lots of under-the-hood improvements to syntax highlighting, as well as: diff --git a/Cargo.lock b/Cargo.lock index bd8b5814..ccf9ac3f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -28,7 +28,7 @@ dependencies = [ [[package]] name = "amp" -version = "0.7.0" +version = "0.7.1" dependencies = [ "app_dirs2", "bloodhound", diff --git a/Cargo.toml b/Cargo.toml index 511c1fbf..e5c7643b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "amp" -version = "0.7.0" +version = "0.7.1" authors = ["Jordan MacDonald "] description = "A complete text editor for your terminal." homepage = "https://amp.rs"