summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCanop <cano.petrole@gmail.com>2021-04-28 11:46:47 +0200
committerCanop <cano.petrole@gmail.com>2021-04-28 11:46:47 +0200
commit611bea27cfd39d76da87a0b122d7f6c5d3912194 (patch)
treeb23468e7e7fb6205c33d6edfd75ac8ceb21d07fb
parent11fc9bec404d6109e47c712eda239aab823bc4ff (diff)
version 1.3.0v1.3.0
-rw-r--r--CHANGELOG.md7
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--src/display/mod.rs1
4 files changed, 6 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f9bb2e0..33dd46d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,11 +1,12 @@
-### next
+<a name="v1.3.0"></a>
+### v1.3.0 - 2021-04-28
#### Minor changes:
- modal mode: revert to command mode on command execution - Fix #372
- modal mode: when in command mode, '/' only enters input mode and is never appended to the input
- better handle failing external programs when not leaving broot
#### Major feature: staging area
-Yoy may add files to the staging area then apply a command on all of them. This new feature is described [here](https://dystroy.org/broot/staging-area).
-Several verbs have been added. Type "stag" in help to see them all.
+You may add files to the staging area then apply a command on all of them. This new feature is described [here](https://dystroy.org/broot/staging-area).
+Several verbs have been added. Type "stag" in help to see them and their keyboard shortcuts.
<a name="v1.2.10"></a>
### v1.2.10 - 2021-04-03
diff --git a/Cargo.lock b/Cargo.lock
index 77508df..a8829dc 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -138,7 +138,7 @@ checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
[[package]]
name = "broot"
-version = "1.3.0-dev"
+version = "1.3.0"
dependencies = [
"ahash 0.7.2",
"ansi_colours",
diff --git a/Cargo.toml b/Cargo.toml
index 747b524..5c55edb 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "broot"
-version = "1.3.0-dev"
+version = "1.3.0"
authors = ["dystroy <denys.seguret@gmail.com>"]
repository = "https://github.com/Canop/broot"
documentation = "https://dystroy.org/broot"
diff --git a/src/display/mod.rs b/src/display/mod.rs
index b40e92c..c59ebef 100644
--- a/src/display/mod.rs
+++ b/src/display/mod.rs
@@ -76,7 +76,6 @@ lazy_static! {
pub const WIDE_STATUS: bool = true;
/// the type used by all GUI writing functions
-//pub type W = std::io::BufWriter<std::io::Stderr>;
pub type W = std::io::BufWriter<std::io::Stderr>;
/// return the writer used by the application