Skip to content

Commit

Permalink
Bump version to 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
greatest-ape committed Aug 28, 2022
1 parent acf4ed2 commit 24b813e
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 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.7"
OCTASINE_SEMVER_VERSION: "v0.8"

jobs:
cargo-deny:
Expand Down
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 octasine-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "octasine-cli"
version = "0.7.0"
version = "0.8.0"
authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"]
license = "AGPL-3.0"
edition = "2021"
Expand All @@ -14,7 +14,7 @@ plot = ["plotlib"]
wgpu = ["octasine/gui_wgpu", "simplelog"]

[dependencies]
octasine = { path = "../octasine", version = "0.7.0", default-features = false }
octasine = { path = "../octasine", version = "0.8.0", default-features = false }

anyhow = "1"
clap = { version = "3", features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions octasine-vst2-plugin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "octasine-vst2-plugin"
version = "0.7.0"
version = "0.8.0"
authors = ["Joakim Frostegård <joakim.frostegard@gmail.com>"]
license = "AGPL-3.0"
edition = "2021"
Expand All @@ -16,5 +16,5 @@ glow = ["octasine/gui_glow"]
wgpu = ["octasine/gui_wgpu"]

[dependencies]
octasine = { path = "../octasine", version = "0.7.0", default-features = false }
octasine = { path = "../octasine", version = "0.8.0", default-features = false }
vst = "0.3.0"
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.7.0"
version = "0.8.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/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ use vst::plugin::{CanDo, Category, HostCallback, Info, Plugin, PluginParameters}

use common::*;

pub const PLUGIN_NAME: &str = "OctaSine v0.7";
pub const PLUGIN_UNIQUE_ID: i32 = 1_438_048_624;
pub const PLUGIN_NAME: &str = "OctaSine v0.8";
pub const PLUGIN_UNIQUE_ID: i32 = 1_438_048_625;

pub struct OctaSine {
pub audio: AudioState,
Expand Down

0 comments on commit 24b813e

Please sign in to comment.