Skip to content

Commit 3d02f64

Browse files
committed
chore: bump version to 0.6.1
Signed-off-by: longjin <longjin@DragonOS.org>
1 parent 90ad03d commit 3d02f64

6 files changed

Lines changed: 14 additions & 14 deletions

File tree

Cargo.lock

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ DADK是一个Rust程序,您可以通过Cargo来安装DADK。
3030
cargo install --git https://github.com/DragonOS-Community/DADK.git
3131

3232
# 或安装指定版本(推荐与DragonOS分支匹配)
33-
cargo install --git https://git.mirrors.dragonos.org.cn/DragonOS-Community/DADK.git --tag v0.6.0 --locked
33+
cargo install --git https://git.mirrors.dragonos.org.cn/DragonOS-Community/DADK.git --tag v0.6.1 --locked
3434

3535

3636
```

dadk-config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dadk-config"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
edition = "2021"
55
authors = [
66
"longjin <longjin@DragonOS.org>",

dadk-user/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dadk-user"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
edition = "2021"
55
description = "DragonOS Application Development Kit - user prog build"
66
license = "GPL-2.0-only"
@@ -9,7 +9,7 @@ license = "GPL-2.0-only"
99
anyhow = { version = "1.0.100", features = ["std", "backtrace"] }
1010
chrono = { version = "=0.4.35", features = ["serde"] }
1111
clap = { version = "=4.5.20", features = ["derive"] }
12-
dadk-config = { version = "0.6.0", path = "../dadk-config" }
12+
dadk-config = { version = "0.6.1", path = "../dadk-config" }
1313
derive_builder = "0.20.0"
1414
lazy_static = "1.4.0"
1515
log = "0.4.17"

dadk/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = [
66
"xuzihao <xuzihao@DragonOS.org>"
77
]
88

9-
version = "0.6.0"
9+
version = "0.6.1"
1010
edition = "2021"
1111
description = "DragonOS Application Development Kit\nDragonOS应用开发工具"
1212
license = "GPL-2.0-only"
@@ -33,8 +33,8 @@ insiders = []
3333
anyhow = { version = "1.0.100", features = ["std", "backtrace"] }
3434
clap = { version = "4.5.20", features = ["derive"] }
3535
crossbeam = "0.8.4"
36-
dadk-config = { version = "0.6.0", path = "../dadk-config" }
37-
dadk-user = { version = "0.6.0", path = "../dadk-user" }
36+
dadk-config = { version = "0.6.1", path = "../dadk-config" }
37+
dadk-user = { version = "0.6.1", path = "../dadk-user" }
3838
derive_builder = "0.20.0"
3939
env_logger = { workspace = true }
4040
humantime = "2.1.0"

docs/user-manual/quickstart.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,21 @@ DADK是一个用于管理DragonOS的应用编译打包的工具。您可以通
1313

1414

1515
```
16-
MIN_DADK_VERSION = 0.6.0
16+
MIN_DADK_VERSION = 0.6.1
1717
```
1818

1919
::: warning 注意版本兼容性
20-
请确保您使用的 dadk 版本与 DragonOS 当前分支要求一致(当前推荐 `v0.6.0`)。
20+
请确保您使用的 dadk 版本与 DragonOS 当前分支要求一致(当前推荐 `v0.6.1`)。
2121
:::
2222

2323
您可以通过以下命令安装dadk:
2424
```shell
2525
cargo install --git https://git.mirrors.dragonos.org.cn/DragonOS-Community/DADK.git --tag <版本号> --locked
2626
```
2727

28-
比如,对于0.6.0版本,您可以使用以下命令安装: `(注意版本号前面有个v)`
28+
比如,对于0.6.1版本,您可以使用以下命令安装: `(注意版本号前面有个v)`
2929
```shell
30-
cargo install --git https://git.mirrors.dragonos.org.cn/DragonOS-Community/DADK.git --tag v0.6.0 --locked
30+
cargo install --git https://git.mirrors.dragonos.org.cn/DragonOS-Community/DADK.git --tag v0.6.1 --locked
3131
```
3232

3333
## RootFS(ext4 + Docker base)

0 commit comments

Comments
 (0)