Skip to content

Commit 49ef290

Browse files
committed
Version bumps
1 parent 2cc8c12 commit 49ef290

File tree

15 files changed

+61
-61
lines changed

15 files changed

+61
-61
lines changed

audio-file/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "caw_audio_file"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
description = "Load audio files for sampling in the caw synthesizer framework"
55
authors = ["Stephen Sherratt <[email protected]>"]
66
license = "MIT"
@@ -10,6 +10,6 @@ documentation = "https://docs.rs/caw_audio_file"
1010
edition = "2021"
1111

1212
[dependencies]
13-
caw_core = { version = "0.4", path = "../core" }
13+
caw_core = { version = "0.5", path = "../core" }
1414
hound = "3.5"
1515
anyhow = "1"

bevy/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "caw_bevy"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
description = "Helpers for controlling a caw syntesizer from bevy"
55
license = "MIT"
66
homepage = "https://github.com/gridbugs/caw.git"
@@ -10,5 +10,5 @@ edition = "2021"
1010

1111
[dependencies]
1212
bevy = { version = "0.15", default-features = false, features = [ "bevy_window" ] }
13-
caw_computer_keyboard = { version = "0.3", path = "../computer-keyboard" }
14-
caw_core = { version = "0.4", path = "../core" }
13+
caw_computer_keyboard = { version = "0.4", path = "../computer-keyboard" }
14+
caw_core = { version = "0.5", path = "../core" }

caw/Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "caw"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
description = "A framework for building software-defined modular synthesizers"
55
authors = ["Stephen Sherratt <[email protected]>"]
66
license = "MIT"
@@ -19,20 +19,20 @@ interactive = ["caw_interactive"]
1919
audio_file = ["caw_audio_file"]
2020

2121
[dependencies]
22-
caw_core = { version = "0.4", path = "../core" }
23-
caw_computer_keyboard = { version = "0.3", path = "../computer-keyboard" }
24-
caw_keyboard = { version = "0.3", path = "../keyboard" }
25-
caw_modules = { version = "0.3", path = "../modules" }
26-
caw_patches = { version = "0.3", path = "../patches" }
27-
caw_utils = { version = "0.3", path = "../utils" }
22+
caw_core = { version = "0.5", path = "../core" }
23+
caw_computer_keyboard = { version = "0.4", path = "../computer-keyboard" }
24+
caw_keyboard = { version = "0.4", path = "../keyboard" }
25+
caw_modules = { version = "0.4", path = "../modules" }
26+
caw_patches = { version = "0.4", path = "../patches" }
27+
caw_utils = { version = "0.4", path = "../utils" }
2828
caw_builder_proc_macros = { version = "0.1", path = "../builder-proc-macros" }
29-
caw_player = { version = "0.6", path = "../player", optional = true }
30-
caw_midi = { version = "0.3", path = "../midi", optional = true }
31-
caw_midi_live = { version = "0.3", path = "../midi-live", optional = true }
32-
caw_midi_file = { version = "0.3", path = "../midi-file", optional = true }
33-
caw_midi_serial = { version = "0.3", path = "../midi-serial", optional = true }
34-
caw_audio_file = { version = "0.3", path = "../audio-file", optional = true }
35-
caw_interactive = { version = "0.6", path = "../interactive", optional = true }
29+
caw_player = { version = "0.7", path = "../player", optional = true }
30+
caw_midi = { version = "0.4", path = "../midi", optional = true }
31+
caw_midi_live = { version = "0.4", path = "../midi-live", optional = true }
32+
caw_midi_file = { version = "0.4", path = "../midi-file", optional = true }
33+
caw_midi_serial = { version = "0.4", path = "../midi-serial", optional = true }
34+
caw_audio_file = { version = "0.4", path = "../audio-file", optional = true }
35+
caw_interactive = { version = "0.7", path = "../interactive", optional = true }
3636

3737
[dev-dependencies]
3838
anyhow = "1.0"

computer-keyboard/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "caw_computer_keyboard"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
description = "Use a computer keyboard to control caw synthesizer modules"
55
authors = ["Stephen Sherratt <[email protected]>"]
66
license = "MIT"
@@ -10,6 +10,6 @@ documentation = "https://docs.rs/caw_computer_keyboard"
1010
edition = "2021"
1111

1212
[dependencies]
13-
caw_keyboard = { version = "0.3", path = "../keyboard" }
14-
caw_core = { version = "0.4", path = "../core" }
13+
caw_keyboard = { version = "0.4", path = "../keyboard" }
14+
caw_core = { version = "0.5", path = "../core" }
1515
itertools = "0.14"

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "caw_core"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
description = "Core types for caw software-defined modular synthesizer"
55
authors = ["Stephen Sherratt <[email protected]>"]
66
license = "MIT"

interactive/Cargo.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "caw_interactive"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
description = "Interactive keyboard and mouse control, and visualization for the caw synthesizer framework"
55
authors = ["Stephen Sherratt <[email protected]>"]
66
license = "MIT"
@@ -11,23 +11,23 @@ edition = "2021"
1111

1212
[dependencies]
1313
anyhow = "1.0"
14-
caw_player = { version = "0.6", path = "../player" }
15-
caw_core = { version = "0.4", path = "../core" }
16-
caw_computer_keyboard = { version = "0.3", path = "../computer-keyboard" }
14+
caw_player = { version = "0.7", path = "../player" }
15+
caw_core = { version = "0.5", path = "../core" }
16+
caw_computer_keyboard = { version = "0.4", path = "../computer-keyboard" }
1717
line_2d = "0.5"
1818
rgb_int = "0.1"
1919
sdl2 = "0.37"
2020

2121
[dev-dependencies]
22-
caw_keyboard = { version = "0.3", path = "../keyboard" }
23-
caw_midi = { version = "0.3", path = "../midi" }
24-
caw_midi_live = { version = "0.3", path = "../midi-live" }
25-
caw_midi_file = { version = "0.3", path = "../midi-file" }
26-
caw_midi_serial = { version = "0.3", path = "../midi-serial" }
27-
caw_modules = { version = "0.3", path = "../modules" }
28-
caw_patches = { version = "0.3", path = "../patches" }
29-
caw_utils = { version = "0.3", path = "../utils" }
30-
caw_audio_file = { version = "0.3", path = "../audio-file" }
22+
caw_keyboard = { version = "0.4", path = "../keyboard" }
23+
caw_midi = { version = "0.4", path = "../midi" }
24+
caw_midi_live = { version = "0.4", path = "../midi-live" }
25+
caw_midi_file = { version = "0.4", path = "../midi-file" }
26+
caw_midi_serial = { version = "0.4", path = "../midi-serial" }
27+
caw_modules = { version = "0.4", path = "../modules" }
28+
caw_patches = { version = "0.4", path = "../patches" }
29+
caw_utils = { version = "0.4", path = "../utils" }
30+
caw_audio_file = { version = "0.4", path = "../audio-file" }
3131
env_logger = "0.11"
3232
rand = "0.8"
3333
wide = "0.7"

keyboard/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "caw_keyboard"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
description = "Abstract representation of a (musical) keyboard for the caw synthesizer framework"
55
authors = ["Stephen Sherratt <[email protected]>"]
66
license = "MIT"
@@ -13,7 +13,7 @@ edition = "2021"
1313
web = ["getrandom/js"]
1414

1515
[dependencies]
16-
caw_core = { version = "0.4", path = "../core" }
16+
caw_core = { version = "0.5", path = "../core" }
1717
smallvec = ">=1.6.1,<2"
1818
log = "0.4"
1919
rand = "0.8"

midi-file/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "caw_midi_file"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
description = "Play midi files with the caw synthesizer framework"
55
authors = ["Stephen Sherratt <[email protected]>"]
66
license = "MIT"
@@ -12,5 +12,5 @@ edition = "2021"
1212
[dependencies]
1313
midly = "0.5"
1414
anyhow = "1"
15-
caw_core = { version = "0.4", path = "../core" }
16-
caw_midi = { version = "0.3", path = "../midi" }
15+
caw_core = { version = "0.5", path = "../core" }
16+
caw_midi = { version = "0.4", path = "../midi" }

midi-live/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "caw_midi_live"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
description = "Use a midi device to control caw synthesizers"
55
authors = ["Stephen Sherratt <[email protected]>"]
66
license = "MIT"
@@ -14,5 +14,5 @@ midir = "0.10"
1414
midly = "0.5"
1515
anyhow = "1"
1616
log = "0.4"
17-
caw_midi = { version = "0.3", path = "../midi" }
18-
caw_core = { version = "0.4", path = "../core" }
17+
caw_midi = { version = "0.4", path = "../midi" }
18+
caw_core = { version = "0.5", path = "../core" }

midi-serial/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "caw_midi_serial"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
description = "Control caw synthesizers with a serial device that transmits midi data over a serial port"
55
authors = ["Stephen Sherratt <[email protected]>"]
66
license = "MIT"
@@ -11,7 +11,7 @@ edition = "2021"
1111

1212
[dependencies]
1313
anyhow = "1.0"
14-
caw_core = { version = "0.4", path = "../core" }
15-
caw_midi = { version = "0.3", path = "../midi" }
14+
caw_core = { version = "0.5", path = "../core" }
15+
caw_midi = { version = "0.4", path = "../midi" }
1616
midly = "0.5"
1717
nix = { version = "0.29", features = ["fs", "term"] }

0 commit comments

Comments
 (0)