Skip to content

Commit

Permalink
feat: standarized and increment versions
Browse files Browse the repository at this point in the history
  • Loading branch information
thewh1teagle committed Nov 28, 2024
1 parent ca87fb9 commit 230af1b
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 8 deletions.
7 changes: 7 additions & 0 deletions BUILDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,10 @@ cargo build -vv >log.txt 2>&1
Look for the flags `/MD` (Meaning it links it dynamically) and `/MT` or `-MT` (Meaning it links it statically). See [MSVC_RUNTIME_LIBRARY](https://cmake.org/cmake/help/latest/prop_tgt/MSVC_RUNTIME_LIBRARY.html) and [pyannote-rs/issues/1](https://github.com/thewh1teagle/pyannote-rs/issues/1)

</details>

## Release new version

```console
gh release create v0.2.8 --title "v0.2.8" --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.7"
version = "0.2.8"
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.4", features = [] }
knf-rs = { path = "crates/knf-rs", version = "0.2.8", 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.4"
version = "0.2.8"
edition = "2021"
license = "MIT"
description = "fbank features extractor without external dependencies"

[dependencies]
knf-rs-sys = { path = "sys", version = "0.2.4", features = [] }
knf-rs-sys = { path = "sys", version = "0.2.8", 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.4"
version = "0.2.8"
edition = "2021"
license = "MIT"
description = "fbank features extractor without external dependencies"
Expand Down

0 comments on commit 230af1b

Please sign in to comment.