Skip to content

Commit

Permalink
bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
yjpark committed Jan 28, 2022
1 parent a915202 commit 8506d19
Show file tree
Hide file tree
Showing 13 changed files with 40 additions and 40 deletions.
24 changes: 12 additions & 12 deletions 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 apps/notation_kb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "notation_kb"
version = "0.4.5"
version = "0.5.0"
edition = "2021"
description = "Fun Notation Knowledge Base"

Expand Down
2 changes: 1 addition & 1 deletion apps/notation_viewer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "notation_viewer"
version = "0.4.5"
version = "0.5.0"
edition = "2021"
description = "Notation Viewer"

Expand Down
8 changes: 4 additions & 4 deletions crates/notation_bevy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "notation_bevy"
version = "0.4.5"
version = "0.5.0"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://www.notation.fun"
Expand Down Expand Up @@ -34,10 +34,10 @@ dsl = [
[dependencies]
notation_bevy_utils = { version = "0.4.2", path = "../notation_bevy_utils" }

notation_model = { version = "0.4.4", path = "../notation_model" }
notation_model = { version = "0.5.0", path = "../notation_model" }

notation_midi = { version = "0.4.5", path = "../notation_midi", optional = true }
notation_dsl = { version = "0.4.4", path = "../notation_dsl", optional = true }
notation_midi = { version = "0.5.0", path = "../notation_midi", optional = true }
notation_dsl = { version = "0.5.0", path = "../notation_dsl", optional = true }

serde = { version = "1.0.133", features = [ "derive" ] }
# https://github.com/serde-rs/serde/issues/1937
Expand Down
2 changes: 1 addition & 1 deletion crates/notation_core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "notation_core"
version = "0.4.3"
version = "0.5.0"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://www.notation.fun"
Expand Down
4 changes: 2 additions & 2 deletions crates/notation_dsl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "notation_dsl"
version = "0.4.4"
version = "0.5.0"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://www.notation.fun"
Expand All @@ -12,7 +12,7 @@ description = "Fun notation - DSL to create notation files"
[lib]

[dependencies]
notation_proto = { version = "0.4.4", path = "../notation_proto" }
notation_proto = { version = "0.5.0", path = "../notation_proto" }

syn = { version = "1.0", features = ["full"] }
quote = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/notation_fretted/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "notation_fretted"
version = "0.4.4"
version = "0.5.0"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://www.notation.fun"
Expand All @@ -12,7 +12,7 @@ description = "Fun notation - definition for fretted instruments"
[lib]

[dependencies]
notation_core = { version = "0.4.3", path = "../notation_core" }
notation_core = { version = "0.5.0", path = "../notation_core" }

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

Expand Down
6 changes: 3 additions & 3 deletions crates/notation_guitar/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "notation_guitar"
version = "0.4.4"
version = "0.5.0"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://www.notation.fun"
Expand All @@ -11,7 +11,7 @@ description = "Fun notation - definition for guitar"
[lib]

[dependencies]
notation_core = { version = "0.4.3", path = "../notation_core" }
notation_fretted = { version = "0.4.4", path = "../notation_fretted" }
notation_core = { version = "0.5.0", path = "../notation_core" }
notation_fretted = { version = "0.5.0", path = "../notation_fretted" }

serde = { version = "1.0.126", features = ["derive"] }
4 changes: 2 additions & 2 deletions crates/notation_macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "notation_macro"
version = "0.4.4"
version = "0.5.0"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://www.notation.fun"
Expand All @@ -13,4 +13,4 @@ description = "Fun notation - DSL to create notation files"
proc-macro = true

[dependencies]
notation_dsl = { version = "0.4.4", path = "../notation_dsl" }
notation_dsl = { version = "0.5.0", path = "../notation_dsl" }
4 changes: 2 additions & 2 deletions crates/notation_midi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "notation_midi"
version = "0.4.5"
version = "0.5.0"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://www.notation.fun"
Expand All @@ -13,7 +13,7 @@ description = "Fun notation - midi features"
[features]

[dependencies]
notation_model = { version = "0.4.4", path = "../notation_model" }
notation_model = { version = "0.5.0", path = "../notation_model" }
notation_audio = { version = "0.4.0", path = "../notation_audio" }

midir = "0.7"
Expand Down
4 changes: 2 additions & 2 deletions crates/notation_model/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "notation_model"
version = "0.4.4"
version = "0.5.0"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://www.notation.fun"
Expand All @@ -11,7 +11,7 @@ description = "Fun notation - runtime models"
[lib]

[dependencies]
notation_proto = { version = "0.4.4", path = "../notation_proto" }
notation_proto = { version = "0.5.0", path = "../notation_proto" }
thiserror = "1.0"
fehler = "1.0"
uuid = { version = "0.8", features = ["serde", "v4"] }
Expand Down
8 changes: 4 additions & 4 deletions crates/notation_proto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "notation_proto"
version = "0.4.4"
version = "0.5.0"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://www.notation.fun"
Expand All @@ -15,6 +15,6 @@ description = "Fun notation - protocol for storage"
serde = { version = "1.0.126", features = ["derive", "alloc"] }
uuid = { version = "0.8", features = ["serde", "v4"] }

notation_core = { version = "0.4.3", path = "../notation_core" }
notation_fretted = { version = "0.4.4", path = "../notation_fretted" }
notation_guitar = { version = "0.4.4", path = "../notation_guitar" }
notation_core = { version = "0.5.0", path = "../notation_core" }
notation_fretted = { version = "0.5.0", path = "../notation_fretted" }
notation_guitar = { version = "0.5.0", path = "../notation_guitar" }
8 changes: 4 additions & 4 deletions crates/notation_tab/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "notation_tab"
version = "0.4.4"
version = "0.5.0"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://www.notation.fun"
Expand All @@ -11,9 +11,9 @@ description = "Fun notation - tab tools"
[lib]

[dependencies]
notation_proto = { version = "0.4.4", path = "../notation_proto" }
notation_dsl = { version = "0.4.4", path = "../notation_dsl" }
notation_macro = { version = "0.4.4", path = "../notation_macro" }
notation_proto = { version = "0.5.0", path = "../notation_proto" }
notation_dsl = { version = "0.5.0", path = "../notation_dsl" }
notation_macro = { version = "0.5.0", path = "../notation_macro" }

serde = "1.0.126"
ron = "0.6"
Expand Down

0 comments on commit 8506d19

Please sign in to comment.