Skip to content

Commit

Permalink
v0.3.0-beta.0
Browse files Browse the repository at this point in the history
  • Loading branch information
thewh1teagle committed Nov 30, 2024
1 parent f2e9786 commit 29f3ce3
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@ Look for the flags `/MD` (Meaning it links it dynamically) and `/MT` or `-MT` (M
## Release new version

```console
gh release create v0.2.9 --title "v0.2.9" --generate-notes
gh release create v0.3.0-beta.0 --title "v0.3.0-beta.0" --generate-notes
git pull # Fetch new tags
```
6 changes: 3 additions & 3 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["crates/knf-rs", "crates/knf-rs/sys"]

[package]
name = "pyannote-rs"
version = "0.2.9"
version = "0.3.0-beta.0"
edition = "2021"
license = "MIT"
description = "Speaker diarization using pyannote in Rust"
Expand All @@ -13,7 +13,7 @@ eyre = "0.6.12"
hound = "3.5.1"
ndarray = "0.16"
ort = "2.0.0-rc.9"
knf-rs = { path = "crates/knf-rs", version = "0.2.9", features = [] }
knf-rs = { path = "crates/knf-rs", version = "0.3.0-beta.0", features = [] }

[features]
default = []
Expand Down
4 changes: 2 additions & 2 deletions crates/knf-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "knf-rs"
version = "0.2.9"
version = "0.3.0-beta.0"
edition = "2021"
license = "MIT"
description = "fbank features extractor without external dependencies"

[dependencies]
knf-rs-sys = { path = "sys", version = "0.2.9", features = [] }
knf-rs-sys = { path = "sys", version = "0.3.0-beta.0", features = [] }
eyre = "0.6.12"
ndarray = "0.16"

Expand Down
2 changes: 1 addition & 1 deletion crates/knf-rs/sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "knf-rs-sys"
version = "0.2.9"
version = "0.3.0-beta.0"
edition = "2021"
license = "MIT"
description = "fbank features extractor without external dependencies"
Expand Down

0 comments on commit 29f3ce3

Please sign in to comment.