Skip to content

Commit

Permalink
Prepare next version
Browse files Browse the repository at this point in the history
  • Loading branch information
Woyten committed Jun 27, 2022
1 parent 28a845b commit cb80ef7
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tune"
version = "0.30.0"
version = "0.31.0"
authors = ["Woyten <woyten.tielesch@online.de>"]
description = "Explore musical tunings and create synthesizer tuning files for microtonal scales."
repository = "https://github.com/Woyten/tune/"
Expand Down
2 changes: 1 addition & 1 deletion fluid-xenth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ stb = ["fluidlite/with-stb"]

[dependencies]
fluidlite = "0.2.0"
tune = { version = "0.30.0", path = ".." }
tune = { version = "0.31.0", path = ".." }

[dev-dependencies]
hound = "3.4.0"
2 changes: 1 addition & 1 deletion magnetron/src/automation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pub trait AutomatedValue {
fn use_context(&mut self, context: &AutomationContext<Self::Storage>) -> Self::Value;
}

impl<A: AutomatedValue<Value = f64>> AutomatedValue for PhantomData<A> {
impl<A: AutomatedValue> AutomatedValue for PhantomData<A> {
type Storage = A::Storage;
type Value = ();

Expand Down
2 changes: 1 addition & 1 deletion microwave/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ rand = { version = "0.8.3", features = ["small_rng"] }
ringbuf = "0.2.2"
serde = "1.0.117"
serde_yaml = "0.8.14"
tune = { version = "0.30.0", path = ".." }
tune = { version = "0.31.0", path = ".." }
tune-cli = { version = "0.23.1", path = "../tune-cli" }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion tune-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ clap = { version = "3.0.6", features = ["derive"] }
midir = "0.8.0"
serde = { version = "1.0.106", features = ["derive"] }
serde_yaml = "0.8.16"
tune = { version = "0.30.0", path = ".." }
tune = { version = "0.31.0", path = ".." }

0 comments on commit cb80ef7

Please sign in to comment.