Skip to content

Commit 0322a7d

Browse files
authored
release: bump version from v1.2.12 to v1.2.13 and improve dfget CLI help text (#1711)
- Bump workspace version from v1.2.12 to v1.2.13 for all crates - Improve help text for `--ms-revision` and `--hf-revision` flags in dfget CLI Signed-off-by: Gaius <gaius.qi@gmail.com>
1 parent a2021c0 commit 0322a7d

File tree

3 files changed

+20
-20
lines changed

3 files changed

+20
-20
lines changed

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ members = [
1313
]
1414

1515
[workspace.package]
16-
version = "1.2.12"
16+
version = "1.2.13"
1717
authors = ["The Dragonfly Developers"]
1818
homepage = "https://d7y.io/"
1919
repository = "https://github.com/dragonflyoss/client.git"
@@ -23,14 +23,14 @@ readme = "README.md"
2323
edition = "2021"
2424

2525
[workspace.dependencies]
26-
dragonfly-client = { path = "dragonfly-client", version = "1.2.12" }
27-
dragonfly-client-core = { path = "dragonfly-client-core", version = "1.2.12" }
28-
dragonfly-client-config = { path = "dragonfly-client-config", version = "1.2.12" }
29-
dragonfly-client-storage = { path = "dragonfly-client-storage", version = "1.2.12" }
30-
dragonfly-client-backend = { path = "dragonfly-client-backend", version = "1.2.12" }
31-
dragonfly-client-metric = { path = "dragonfly-client-metric", version = "1.2.12" }
32-
dragonfly-client-util = { path = "dragonfly-client-util", version = "1.2.12" }
33-
dragonfly-client-init = { path = "dragonfly-client-init", version = "1.2.12" }
26+
dragonfly-client = { path = "dragonfly-client", version = "1.2.13" }
27+
dragonfly-client-core = { path = "dragonfly-client-core", version = "1.2.13" }
28+
dragonfly-client-config = { path = "dragonfly-client-config", version = "1.2.13" }
29+
dragonfly-client-storage = { path = "dragonfly-client-storage", version = "1.2.13" }
30+
dragonfly-client-backend = { path = "dragonfly-client-backend", version = "1.2.13" }
31+
dragonfly-client-metric = { path = "dragonfly-client-metric", version = "1.2.13" }
32+
dragonfly-client-util = { path = "dragonfly-client-util", version = "1.2.13" }
33+
dragonfly-client-init = { path = "dragonfly-client-init", version = "1.2.13" }
3434
dragonfly-api = "=2.2.24"
3535
thiserror = "2.0"
3636
futures = "0.3.32"

dragonfly-client/src/bin/dfget/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ struct Args {
303303
#[arg(
304304
long,
305305
default_value = "master",
306-
help = "Specify the revision for ModelScope Hub, only used when downloading from ModelScope Hub"
306+
help = "Specify the revision version for ModelScope Hub"
307307
)]
308308
ms_revision: String,
309309

@@ -316,7 +316,7 @@ struct Args {
316316
#[arg(
317317
long,
318318
default_value = "main",
319-
help = "Specify the revision for Hugging Face Hub, only used when downloading from Hugging Face Hub"
319+
help = "Specify the revision version for Hugging Face Hub"
320320
)]
321321
hf_revision: String,
322322

0 commit comments

Comments
 (0)