summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCanop <cano.petrole@gmail.com>2023-07-16 19:08:03 +0200
committerCanop <cano.petrole@gmail.com>2023-07-16 19:08:03 +0200
commitb0a7dbeb89de4eadcbbad07030a2347546ac758e (patch)
treec369d9d7aaf2736e6461fc50cb9f909f752145bb
parent0ca80f547633bd26b2765f4b0cebf0ea265fdfd6 (diff)
version 2.7.1
Fix the program name in --help
-rw-r--r--CHANGELOG.md4
-rw-r--r--Cargo.toml6
-rw-r--r--cli/Cargo.toml2
3 files changed, 6 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a1606b0..e87af8b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,5 @@
-<a name="v2.7.0"></a>
-### v2.7.0 - 2023/07/16
+<a name="v2.7.1"></a>
+### v2.7.1 - 2023/07/16
- improved `--help`
- man page generated in /build and included in downloadable archives
- completion scripts generated in /build and included in downloadable archives
diff --git a/Cargo.toml b/Cargo.toml
index 866dad3..874e771 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "dysk"
-version = "2.7.0"
+version = "2.7.1"
authors = ["dystroy <denys.seguret@gmail.com>"]
edition = "2021"
keywords = ["linux", "filesystem", "fs", "lfs", "disk"]
@@ -16,13 +16,13 @@ exclude = ["website", "dysk*.zip"]
build = "build.rs"
[dependencies]
-dysk-cli = { version = "2.7.0", path = "cli" } # beware: version is also in build dependencies
+dysk-cli = { version = "2.7.1", path = "cli" } # beware: version is also in build dependencies
[build-dependencies]
clap = { version = "4.3", features = ["derive", "cargo"] }
clap_complete = "4.3"
clap_mangen = "0.2.12"
-dysk-cli = { version = "2.7.0", path = "cli" }
+dysk-cli = { version = "2.7.1", path = "cli" }
[profile.release]
strip = true
diff --git a/cli/Cargo.toml b/cli/Cargo.toml
index 9ba6d92..b95afda 100644
--- a/cli/Cargo.toml
+++ b/cli/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "dysk-cli"
-version = "2.7.0"
+version = "2.7.1"
authors = ["dystroy <denys.seguret@gmail.com>"]
edition = "2021"
license = "MIT"