Skip to content

Commit 8506d19

Browse files
committed
bump versions
1 parent a915202 commit 8506d19

File tree

13 files changed

+40
-40
lines changed

13 files changed

+40
-40
lines changed

Cargo.lock

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/notation_kb/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "notation_kb"
3-
version = "0.4.5"
3+
version = "0.5.0"
44
edition = "2021"
55
description = "Fun Notation Knowledge Base"
66

apps/notation_viewer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "notation_viewer"
3-
version = "0.4.5"
3+
version = "0.5.0"
44
edition = "2021"
55
description = "Notation Viewer"
66

crates/notation_bevy/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "notation_bevy"
3-
version = "0.4.5"
3+
version = "0.5.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
homepage = "https://www.notation.fun"
@@ -34,10 +34,10 @@ dsl = [
3434
[dependencies]
3535
notation_bevy_utils = { version = "0.4.2", path = "../notation_bevy_utils" }
3636

37-
notation_model = { version = "0.4.4", path = "../notation_model" }
37+
notation_model = { version = "0.5.0", path = "../notation_model" }
3838

39-
notation_midi = { version = "0.4.5", path = "../notation_midi", optional = true }
40-
notation_dsl = { version = "0.4.4", path = "../notation_dsl", optional = true }
39+
notation_midi = { version = "0.5.0", path = "../notation_midi", optional = true }
40+
notation_dsl = { version = "0.5.0", path = "../notation_dsl", optional = true }
4141

4242
serde = { version = "1.0.133", features = [ "derive" ] }
4343
# https://github.com/serde-rs/serde/issues/1937

crates/notation_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 = "notation_core"
3-
version = "0.4.3"
3+
version = "0.5.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
homepage = "https://www.notation.fun"

crates/notation_dsl/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "notation_dsl"
3-
version = "0.4.4"
3+
version = "0.5.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
homepage = "https://www.notation.fun"
@@ -12,7 +12,7 @@ description = "Fun notation - DSL to create notation files"
1212
[lib]
1313

1414
[dependencies]
15-
notation_proto = { version = "0.4.4", path = "../notation_proto" }
15+
notation_proto = { version = "0.5.0", path = "../notation_proto" }
1616

1717
syn = { version = "1.0", features = ["full"] }
1818
quote = "1.0"

crates/notation_fretted/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "notation_fretted"
3-
version = "0.4.4"
3+
version = "0.5.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
homepage = "https://www.notation.fun"
@@ -12,7 +12,7 @@ description = "Fun notation - definition for fretted instruments"
1212
[lib]
1313

1414
[dependencies]
15-
notation_core = { version = "0.4.3", path = "../notation_core" }
15+
notation_core = { version = "0.5.0", path = "../notation_core" }
1616

1717
serde = { version = "1.0.126", features = ["derive"] }
1818

crates/notation_guitar/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "notation_guitar"
3-
version = "0.4.4"
3+
version = "0.5.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
homepage = "https://www.notation.fun"
@@ -11,7 +11,7 @@ description = "Fun notation - definition for guitar"
1111
[lib]
1212

1313
[dependencies]
14-
notation_core = { version = "0.4.3", path = "../notation_core" }
15-
notation_fretted = { version = "0.4.4", path = "../notation_fretted" }
14+
notation_core = { version = "0.5.0", path = "../notation_core" }
15+
notation_fretted = { version = "0.5.0", path = "../notation_fretted" }
1616

1717
serde = { version = "1.0.126", features = ["derive"] }

crates/notation_macro/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "notation_macro"
3-
version = "0.4.4"
3+
version = "0.5.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
homepage = "https://www.notation.fun"
@@ -13,4 +13,4 @@ description = "Fun notation - DSL to create notation files"
1313
proc-macro = true
1414

1515
[dependencies]
16-
notation_dsl = { version = "0.4.4", path = "../notation_dsl" }
16+
notation_dsl = { version = "0.5.0", path = "../notation_dsl" }

crates/notation_midi/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "notation_midi"
3-
version = "0.4.5"
3+
version = "0.5.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
homepage = "https://www.notation.fun"
@@ -13,7 +13,7 @@ description = "Fun notation - midi features"
1313
[features]
1414

1515
[dependencies]
16-
notation_model = { version = "0.4.4", path = "../notation_model" }
16+
notation_model = { version = "0.5.0", path = "../notation_model" }
1717
notation_audio = { version = "0.4.0", path = "../notation_audio" }
1818

1919
midir = "0.7"

0 commit comments

Comments
 (0)