Skip to content
This repository was archived by the owner on Sep 17, 2024. It is now read-only.

Commit 08518f2

Browse files
committed
Release version 0.5.0
Signed-off-by: Petr Horacek <[email protected]>
1 parent 6a5ccd4 commit 08518f2

File tree

11 files changed

+21
-19
lines changed

11 files changed

+21
-19
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ backwards compatibility.
66

77
## Unreleased
88

9+
## 0.5.0
10+
911
* Implement sound output in the firmware.
1012
* Introduce a basic instrument based around Karplus Strong algorithm.
1113
* Allow custom settings for f32 attribute range.

eurorack/Cargo.lock

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

eurorack/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
authors = ["Petr Horáček <[email protected]>"]
33
edition = "2018"
44
name = "proton-eurorack"
5-
version = "0.4.0" # hack/release.sh
5+
version = "0.5.0" # hack/release.sh
66
license = "GPL-3.0-or-later"
77
repository = "https://github.com/zlosynth/proton"
88
readme = "../README.md"

hardware/Module.kicad_pcb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
(title_block
99
(title "Proton")
1010
(date "2022-03-06")
11-
(rev "v0.4.0")
11+
(rev "v0.5.0")
1212
(company "Petr Horáček")
1313
(comment 1 "[email protected]")
1414
(comment 2 "https://github.com/zlosynth/proton")
@@ -7260,7 +7260,7 @@
72607260
(gr_text "RED\n-12 V" (at 122.53 94.95) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-000062259c98)
72617261
(effects (font (size 1 1) (thickness 0.15)))
72627262
)
7263-
(gr_text "board v0.4.0" (at 158.77 58.98 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00006225a763)
7263+
(gr_text "board v0.5.0" (at 158.77 58.98 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00006225a763)
72647264
(effects (font (size 1 1) (thickness 0.15)) (justify left))
72657265
)
72667266
(gr_text "S/N:" (at 131.06 129.16 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-00006225a764)

hardware/Module.kicad_sch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
(title_block
88
(title "Proton")
99
(date "2022-03-06")
10-
(rev "v0.4.0")
10+
(rev "v0.5.0")
1111
(company "Petr Horáček")
1212
(comment 1 "[email protected]")
1313
(comment 2 "https://github.com/zlosynth/proton")

instruments/karplus_strong/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["Petr Horáček <[email protected]>"]
33
name = "proton-instruments-karplus-strong"
4-
version = "0.4.0" # hack/release.sh
4+
version = "0.5.0" # hack/release.sh
55
edition = "2021"
66
license = "GPL-3.0-or-later"
77
repository = "https://github.com/zlosynth/proton"

peripherals/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["Petr Horáček <[email protected]>"]
33
name = "proton-peripherals"
4-
version = "0.4.0" # hack/release.sh
4+
version = "0.5.0" # hack/release.sh
55
edition = "2021"
66
license = "GPL-3.0-or-later"
77
repository = "https://github.com/zlosynth/proton"

primitives/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["Petr Horáček <[email protected]>"]
33
name = "proton-primitives"
4-
version = "0.4.0" # hack/release.sh
4+
version = "0.5.0" # hack/release.sh
55
edition = "2021"
66
license = "GPL-3.0-or-later"
77
repository = "https://github.com/zlosynth/proton"

puredata/Cargo.lock

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

puredata/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
authors = ["Petr Horáček <[email protected]>"]
33
name = "proton-puredata"
4-
version = "0.4.0" # hack/release.sh
4+
version = "0.5.0" # hack/release.sh
55
edition = "2021"
66
license = "GPL-3.0-or-later"
77
repository = "https://github.com/zlosynth/proton"

0 commit comments

Comments
 (0)