Skip to content

Commit

Permalink
Bump version to 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
greatest-ape committed Aug 3, 2023
1 parent cfabeac commit 8ea3de5
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

env:
CARGO_TERM_COLOR: always
OCTASINE_SEMVER_VERSION: "v0.8"
OCTASINE_SEMVER_VERSION: "v0.9"

jobs:
cargo-deny:
Expand Down
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.

4 changes: 2 additions & 2 deletions octasine-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "octasine-cli"
version = "0.8.7"
version = "0.9.0"
authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"]
license = "AGPL-3.0"
edition = "2021"
Expand All @@ -13,7 +13,7 @@ plot = ["plotlib"]
wgpu = ["octasine/wgpu", "simplelog"]

[dependencies]
octasine = { path = "../octasine", version = "0.8.7", default-features = false, features = ["vst2"] }
octasine = { path = "../octasine", version = "0.9", default-features = false, features = ["vst2"] }

anyhow = "1"
clap = { version = "4", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion octasine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "octasine"
version = "0.8.7"
version = "0.9.0"
authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"]
license = "AGPL-3.0"
edition = "2021"
Expand Down
4 changes: 2 additions & 2 deletions octasine/src/plugin/common.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pub const PLUGIN_UNIQUE_VST2_ID: i32 = 1_438_048_625;
pub const PLUGIN_SEMVER_NAME: &str = "OctaSine v0.8";
pub const PLUGIN_UNIQUE_VST2_ID: i32 = 1_438_048_626;
pub const PLUGIN_SEMVER_NAME: &str = "OctaSine v0.9";

pub fn crate_version_to_vst2_format(crate_version: &str) -> i32 {
format!("{:0<4}", crate_version.replace('.', ""))
Expand Down

0 comments on commit 8ea3de5

Please sign in to comment.