Skip to content

Commit e57e5b4

Browse files
committed
Bump versions
1 parent 125c3bd commit e57e5b4

File tree

29 files changed

+137
-89
lines changed

29 files changed

+137
-89
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.4.0"
3+
version = "0.5.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 = "2024"
1111

1212
[dependencies]
13-
caw_core = { version = "0.5", path = "../core" }
13+
caw_core = { version = "0.6", 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.2.0"
3+
version = "0.3.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 = "2024"
1010

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

bevy/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
![CAW Logo](../assets/logo.png)
2+
3+
# caw_bevy
4+
5+
[![Version](https://img.shields.io/crates/v/caw_bevy.svg)](https://crates.io/crates/caw_bevy)
6+
[![Documentation](https://docs.rs/caw_bevy/badge.svg)](https://docs.rs/caw_bevy)
7+
[![test](https://github.com/gridbugs/caw/actions/workflows/test.yml/badge.svg)](https://github.com/gridbugs/caw/actions/workflows/test.yml)
8+
[![dependency status](https://deps.rs/repo/github/gridbugs/caw/status.svg)](https://deps.rs/repo/github/gridbugs/caw)
9+
10+
Helpers for controlling a caw syntesizer from bevy.
11+
12+
Part of the [CAW Synthesizer Framework](..).

builder-proc-macros/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_builder_proc_macros"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
description = "A macro for generating builders"
55
authors = ["Stephen Sherratt <[email protected]>"]
66
license = "MIT"

caw/Cargo.toml

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

2424
[dependencies]
25-
caw_core = { version = "0.5", path = "../core" }
26-
caw_computer_keyboard = { version = "0.4", path = "../computer-keyboard" }
27-
caw_keyboard = { version = "0.4", path = "../keyboard" }
28-
caw_modules = { version = "0.4", path = "../modules" }
29-
caw_patches = { version = "0.4", path = "../patches" }
30-
caw_utils = { version = "0.4", path = "../utils" }
31-
caw_builder_proc_macros = { version = "0.1", path = "../builder-proc-macros" }
32-
caw_player = { version = "0.8", path = "../player", optional = true }
33-
caw_midi = { version = "0.4", path = "../midi", optional = true }
34-
caw_midi_live = { version = "0.4", path = "../midi-live", optional = true }
35-
caw_midi_file = { version = "0.4", path = "../midi-file", optional = true }
36-
caw_midi_serial = { version = "0.4", path = "../midi-serial", optional = true }
37-
caw_audio_file = { version = "0.4", path = "../audio-file", optional = true }
38-
caw_interactive = { version = "0.8", path = "../interactive", optional = true }
39-
caw_live = { version = "0.1", path = "../live", optional = true }
40-
caw_midi_udp_widgets_app_lib = { version = "0.1", path = "../midi-udp-widgets-app-lib", optional = true }
41-
caw_viz_udp_app_lib = { version = "0.1", path = "../viz-udp-app-lib", optional = true }
25+
caw_core = { version = "0.6", path = "../core" }
26+
caw_computer_keyboard = { version = "0.5", path = "../computer-keyboard" }
27+
caw_keyboard = { version = "0.5", path = "../keyboard" }
28+
caw_modules = { version = "0.5", path = "../modules" }
29+
caw_patches = { version = "0.5", path = "../patches" }
30+
caw_utils = { version = "0.5", path = "../utils" }
31+
caw_builder_proc_macros = { version = "0.2", path = "../builder-proc-macros" }
32+
caw_player = { version = "0.9", path = "../player", optional = true }
33+
caw_midi = { version = "0.5", path = "../midi", optional = true }
34+
caw_midi_live = { version = "0.5", path = "../midi-live", optional = true }
35+
caw_midi_file = { version = "0.5", path = "../midi-file", optional = true }
36+
caw_midi_serial = { version = "0.5", path = "../midi-serial", optional = true }
37+
caw_audio_file = { version = "0.5", path = "../audio-file", optional = true }
38+
caw_interactive = { version = "0.9", path = "../interactive", optional = true }
39+
caw_live = { version = "0.2", path = "../live", optional = true }
40+
caw_midi_udp_widgets_app_lib = { version = "0.2", path = "../midi-udp-widgets-app-lib", optional = true }
41+
caw_viz_udp_app_lib = { version = "0.2", path = "../viz-udp-app-lib", optional = true }
4242

4343
[dev-dependencies]
4444
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.4.0"
3+
version = "0.5.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 = "2024"
1111

1212
[dependencies]
13-
caw_keyboard = { version = "0.4", path = "../keyboard" }
14-
caw_core = { version = "0.5", path = "../core" }
13+
caw_keyboard = { version = "0.5", path = "../keyboard" }
14+
caw_core = { version = "0.6", 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.5.1"
3+
version = "0.6.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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "caw_interactive"
3-
version = "0.8.0"
3+
version = "0.9.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,9 +11,9 @@ edition = "2024"
1111

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

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.4.1"
3+
version = "0.5.0"
44
description = "Abstract representation of a (musical) keyboard for the caw synthesizer framework"
55
authors = ["Stephen Sherratt <[email protected]>"]
66
license = "MIT"
@@ -14,7 +14,7 @@ web = ["getrandom/wasm_js"]
1414

1515
[dependencies]
1616
serde = { version = "1.0", features = ["serde_derive"] }
17-
caw_core = { version = "0.5", path = "../core" }
17+
caw_core = { version = "0.6", path = "../core" }
1818
smallvec = ">=1.6.1,<2"
1919
log = "0.4"
2020
rand = "0.9"

live/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "caw_live"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
edition = "2024"
55
description = "Helpers for live-coding performances with CAW"
66
authors = ["Stephen Sherratt <[email protected]>"]
@@ -10,7 +10,7 @@ repository = "https://github.com/gridbugs/caw.git"
1010
documentation = "https://docs.rs/caw_live"
1111

1212
[dependencies]
13-
caw_core = { version = "0.5", path = "../core" }
14-
caw_player = { version = "0.8", path = "../player" }
15-
caw_viz_udp_app_lib = { version = "0.1", path = "../viz-udp-app-lib" }
13+
caw_core = { version = "0.6", path = "../core" }
14+
caw_player = { version = "0.9", path = "../player" }
15+
caw_viz_udp_app_lib = { version = "0.2", path = "../viz-udp-app-lib" }
1616
lazy_static = "1.5"

0 commit comments

Comments
 (0)