Skip to content

Commit

Permalink
[release] Release 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
iqiziqi committed Sep 17, 2024
1 parent f894446 commit 159a80b
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["crates/ncmdump", "crates/ncmdump-bin"]
resolver = "2"

[workspace.package]
version = "0.7.3"
version = "0.8.0"
authors = ["iqiziqi <[email protected]>"]
edition = "2021"

Expand All @@ -17,5 +17,10 @@ keywords = ["ncm", "qmc", "music", "dump"]

[workspace.dependencies]
anyhow = "^1.0"
ncmdump = { path = "crates/ncmdump" }
ncmdump = { path = "crates/ncmdump", version = "0.8.0" }
thiserror = "^1.0"

[profile.release]
lto = true
opt-level = "s"
strip = true
4 changes: 3 additions & 1 deletion README.cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
cargo install ncmdump
```

或者通过 [GitHub Release](https://github.com/iqiziqi/ncmdump.rs/releases/latest) 下载。

### 简单使用

```shell
Expand Down Expand Up @@ -52,7 +54,7 @@ Options:
在你的 `Cargo.toml` 文件中添加依赖:

```toml
ncmdump = "0.7.3"
ncmdump = "0.8.0"
```

或者,如果安装了 [cargo-edit](https://github.com/killercup/cargo-edit),你可以使用命令:
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,11 @@
You can install by Cargo.

```shell
cargo install ncmdump
cargo install ncmdump-bin
```

Or download the binary file by [GitHub Release](https://github.com/iqiziqi/ncmdump.rs/releases/latest).

### Simple usage

```shell
Expand Down Expand Up @@ -52,7 +54,7 @@ Options:
You can add this to your `Cargo.toml`:

```toml
ncmdump = "0.7.3"
ncmdump = "0.8.0"
```

Also, you can use this command to install this crate,
Expand Down
5 changes: 0 additions & 5 deletions crates/ncmdump-bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,3 @@ thiserror = { workspace = true }
ncmdump = { workspace = true }
metaflac = "0.2.5"
id3 = "1.9.0"

[profile.release]
lto = true
opt-level = "s"
strip = true

0 comments on commit 159a80b

Please sign in to comment.