Skip to content

Commit 965d2b2

Browse files
committed
chore(release): prepare for v0.5.1
Signed-off-by: Gaoyang Zhang <gy@blurgy.xyz>
1 parent e26dc9c commit 965d2b2

6 files changed

Lines changed: 24 additions & 33 deletions

File tree

Cargo.lock

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

dt-cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "dt-cli"
33
description = "Syncing dotfiles and more"
4-
version = "0.5.0"
4+
version = "0.5.1"
55
edition = "2021"
66
authors = ["Gaoyang Zhang <gy@blurgy.xyz>"]
77
documentation = "https://dt.cli.rs/"
@@ -14,10 +14,10 @@ keywords = ["config", "dotfile", "dotfiles", "manager"]
1414

1515
[dependencies]
1616
dirs = "4.0.0"
17-
dt-core = { path = "../dt-core", version = "0.5.0" }
17+
dt-core = { path = "../dt-core", version = "0.5.1" }
1818
log = "0.4.14"
1919
pretty_env_logger = "0.4.0"
20-
structopt = "0.3.23"
20+
structopt = "0.3.25"
2121

2222
# Author: Blurgy <gy@blurgy.xyz>
2323
# Date: Sep 17 2021, 21:32 [CST]

dt-cli/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![release](https://github.com/blurgyy/dt/actions/workflows/release.yml/badge.svg)](https://github.com/blurgyy/dt/actions/workflows/release.yml)
44
[![tests](https://github.com/blurgyy/dt/actions/workflows/tests.yml/badge.svg)](https://github.com/blurgyy/dt/actions/workflows/tests.yml)
5-
[![docs](https://github.com/blurgyy/dt/actions/workflows/docs.yml/badge.svg)](https://dt-cli-docs.blurgy.xyz/)
5+
[![docs](https://github.com/blurgyy/dt/actions/workflows/docs.yml/badge.svg)](https://dt.cli.rs/)
66
[![crates.io](https://img.shields.io/crates/v/dt-cli?style=flat&labelColor=1C2C2E&color=C96329&logo=Rust&logoColor=white)](https://crates.io/crates/dt-cli)
77

88
`DT` allows you to sync/populate configuration files at will. It currently
@@ -14,7 +14,7 @@ The command line interface `dt-cli` accepts a path to the configuration file
1414
as an argument and performs the syncing process specified in the file.
1515

1616
Configuration guides and detailed usages can be found in the
17-
[documentations](https://dt-cli-docs.blurgy.xyz/).
17+
[documentations](https://dt.cli.rs/).
1818

1919
### Example
2020

dt-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "dt-core"
33
description = "Core utilities used by dt-cli"
4-
version = "0.5.0"
4+
version = "0.5.1"
55
edition = "2021"
66
authors = ["Gaoyang Zhang <gy@blurgy.xyz>"]
77
license = "MIT OR Apache-2.0"

dt-core/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![release](https://github.com/blurgyy/dt/actions/workflows/release.yml/badge.svg)](https://github.com/blurgyy/dt/actions/workflows/release.yml)
44
[![tests](https://github.com/blurgyy/dt/actions/workflows/tests.yml/badge.svg)](https://github.com/blurgyy/dt/actions/workflows/tests.yml)
5-
[![docs](https://github.com/blurgyy/dt/actions/workflows/docs.yml/badge.svg)](https://dt-cli-docs.blurgy.xyz/)
5+
[![docs](https://github.com/blurgyy/dt/actions/workflows/docs.yml/badge.svg)](https://dt.cli.rs/)
66
[![crates.io](https://img.shields.io/crates/v/dt-cli?style=flat&labelColor=1C2C2E&color=C96329&logo=Rust&logoColor=white)](https://crates.io/crates/dt-cli)
77

88
`DT` allows you to sync/populate configuration files at will. It currently
@@ -14,7 +14,7 @@ The command line interface `dt-cli` accepts a path to the configuration file
1414
as an argument and performs the syncing process specified in the file.
1515

1616
Configuration guides and detailed usages can be found in the
17-
[documentations](https://dt-cli-docs.blurgy.xyz/).
17+
[documentations](https://dt.cli.rs/).
1818

1919
### Example
2020

dt-server/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ keywords = ["dotfiles", "manager", "syncing", "config"]
1414

1515
[dependencies]
1616
dirs = "4.0.0"
17-
dt-core = { path = "../dt-core", version = "0.5.0" }
17+
dt-core = { path = "../dt-core", version = "0.5.1" }
1818
log = "0.4.14"
1919
pretty_env_logger = "0.4.0"
20-
structopt = "0.3.23"
21-
tokio = { version = "1.12.0", features = ["full"] }
22-
warp = "0.3.1"
20+
structopt = "0.3.25"
21+
tokio = { version = "1.14.0", features = ["full"] }
22+
warp = "0.3.2"
2323

2424
# Author: Blurgy <gy@blurgy.xyz>
2525
# Date: Oct 19 2021, 09:35 [CST]

0 commit comments

Comments
 (0)