From a155651942c5df0d0322cded682bd99b97b2117a Mon Sep 17 00:00:00 2001 From: Jordan MacDonald Date: Wed, 3 Oct 2018 20:54:15 -0400 Subject: [PATCH] 0.5.1 --- CHANGELOG.md | 16 ++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4351e716..9605fc43 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +### 0.5.1 + +* Added ability to open Amp in another directory via `amp path/to/directory` +* Improved newline indentation heuristics + * See https://github.com/jmacdonald/amp/issues/103 for details +* Added `>` prefix and bold style to selection in search/select mode + * See https://github.com/jmacdonald/amp/issues/106 for details +* Amp will now refresh its syntax definition after a buffer's path is changed + * See https://github.com/jmacdonald/amp/issues/97 for details +* Added a quick start guide, referenced from the splash page +* Added suspend command key binding to search/select normal mode +* Added the ability to configure number of results in search/select mode + * See https://amp.rs/docs/configuration/#searchselect-results for details +* Updated `termbox-sys` dependency, which fixes `.termbox already exists` build errors + * See https://github.com/gchp/termbox-sys/issues/11 for details + ### 0.5.0 * Added caching to syntax highlighting, to improve performance for large buffers diff --git a/Cargo.lock b/Cargo.lock index c29c7903..286f8785 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -16,7 +16,7 @@ dependencies = [ [[package]] name = "amp" -version = "0.5.0" +version = "0.5.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 336076a6..511573fa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "amp" -version = "0.5.0" +version = "0.5.1" authors = ["Jordan MacDonald "] description = "A complete text editor for your terminal." homepage = "https://amp.rs"