Skip to content

Commit

Permalink
Prepare next version
Browse files Browse the repository at this point in the history
  • Loading branch information
Woyten committed Jul 11, 2024
1 parent 710ed9e commit ee26bed
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 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.34.0"
version = "0.35.0"
authors = ["Woyten <[email protected]>"]
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 @@ -16,7 +16,7 @@ sf3 = ["oxisynth/sf3"]

[dependencies]
oxisynth = "0.0.5"
tune = { version = "0.34.0", path = ".." }
tune = { version = "0.35.0", path = ".." }

[dev-dependencies]
hound = "3.4.0"
2 changes: 1 addition & 1 deletion microwave/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ rand = { version = "0.8.3", features = ["small_rng"] }
ringbuf = "0.4.0"
serde = "1.0.117"
serde_yaml = "0.8.14"
tune = { version = "0.34.0", path = ".." }
tune = { version = "0.35.0", path = ".." }
tune-cli = { version = "0.27.0", path = "../tune-cli" }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
Expand Down
4 changes: 2 additions & 2 deletions src/layout.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,14 +110,14 @@ impl IsomorphicLayout {
///
/// ```
/// # use tune::layout::IsomorphicLayout;
/// let positive_sharpness = IsomorphicLayout::find_by_edo(31).into_iter().next().unwrap();
/// let positive_sharpness = &IsomorphicLayout::find_by_edo(31)[0];
///
/// assert_eq!(positive_sharpness.get_note_name(0), "D");
/// assert_eq!(positive_sharpness.get_note_name(1), "Ebb");
/// assert_eq!(positive_sharpness.get_note_name(18), "A");
/// assert_eq!(positive_sharpness.get_note_name(25), "B#");
///
/// let negative_sharpness = IsomorphicLayout::find_by_edo(16).into_iter().skip(1).next().unwrap();
/// let negative_sharpness = &IsomorphicLayout::find_by_edo(16)[1];
///
/// assert_eq!(negative_sharpness.get_note_name(0), "D");
/// assert_eq!(negative_sharpness.get_note_name(1), "D+/E-");
Expand Down
2 changes: 1 addition & 1 deletion tune-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ futures = "0.3.0"
midir = "0.10.0"
serde = { version = "1.0.106", features = ["derive"] }
serde_yaml = "0.8.16"
tune = { version = "0.34.0", path = ".." }
tune = { version = "0.35.0", path = ".." }

0 comments on commit ee26bed

Please sign in to comment.