Skip to content

Commit bafb105

Browse files
committed
bump versions
1 parent c46801d commit bafb105

File tree

9 files changed

+42
-14
lines changed

9 files changed

+42
-14
lines changed

Cargo.lock

Lines changed: 7 additions & 7 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.0"
3+
version = "0.4.1"
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.0"
3+
version = "0.4.1"
44
edition = "2021"
55
description = "Notation Viewer"
66

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

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

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

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

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

crates/show-changes-from-tag.bash

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
#!/usr/bin/env bash
2+
3+
cd `dirname $0`
4+
5+
echo "------------------------------------- core"
6+
git shortlog --numbered --summary $1..HEAD -- notation_core
7+
echo "------------------------------------- fretted"
8+
git shortlog --numbered --summary $1..HEAD -- notation_fretted
9+
echo "------------------------------------- guitar"
10+
git shortlog --numbered --summary $1..HEAD -- notation_guitar
11+
echo "------------------------------------- proto"
12+
git shortlog --numbered --summary $1..HEAD -- notation_proto
13+
echo "------------------------------------- model"
14+
git shortlog --numbered --summary $1..HEAD -- notation_model
15+
echo "------------------------------------- dsl"
16+
git shortlog --numbered --summary $1..HEAD -- notation_dsl
17+
echo "------------------------------------- macro"
18+
git shortlog --numbered --summary $1..HEAD -- notation_macro
19+
echo "------------------------------------- tab"
20+
git shortlog --numbered --summary $1..HEAD -- notation_tab
21+
echo "------------------------------------- audio"
22+
git shortlog --numbered --summary $1..HEAD -- notation_audio
23+
echo "------------------------------------- midi"
24+
git shortlog --numbered --summary $1..HEAD -- notation_midi
25+
echo "------------------------------------- bevy_utils"
26+
git shortlog --numbered --summary $1..HEAD -- notation_bevy_utils
27+
echo "------------------------------------- bevy"
28+
git shortlog --numbered --summary $1..HEAD -- notation_bevy

0 commit comments

Comments
 (0)