diff --git a/CHANGELOG.md b/CHANGELOG.md index 735af9d..7958667 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ backwards compatibility. ## Unreleased +## 2.3.0 + * Introduce basic detune to the first detune section. * Tune the output to match 440 Hz at A. * Fix 1V/oct alignment of unquantized solo voice output. diff --git a/bank/Cargo.lock b/bank/Cargo.lock index ad30eb6..f24fe5c 100644 --- a/bank/Cargo.lock +++ b/bank/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "achordion-bank" -version = "2.2.1" +version = "2.3.0" dependencies = [ "microfft", "micromath", diff --git a/bank/Cargo.toml b/bank/Cargo.toml index 93b1593..3ad80ad 100644 --- a/bank/Cargo.toml +++ b/bank/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Petr Horáček "] edition = "2018" name = "achordion-bank" -version = "2.2.1" # hack/release.sh +version = "2.3.0" # hack/release.sh license = "GPL-3.0-or-later" description = "Wavetable banks and their processing." repository = "https://github.com/zlosynth/achordion" diff --git a/eurorack/Cargo.lock b/eurorack/Cargo.lock index 9c2b9be..258914e 100644 --- a/eurorack/Cargo.lock +++ b/eurorack/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "achordion-bank" -version = "2.2.1" +version = "2.3.0" dependencies = [ "microfft", "micromath", @@ -13,7 +13,7 @@ dependencies = [ [[package]] name = "achordion-eurorack" -version = "2.2.1" +version = "2.3.0" dependencies = [ "achordion-bank", "achordion-lib", @@ -27,7 +27,7 @@ dependencies = [ [[package]] name = "achordion-lib" -version = "2.2.1" +version = "2.3.0" dependencies = [ "crc", "field-offset", diff --git a/eurorack/Cargo.toml b/eurorack/Cargo.toml index 78dfe00..369626f 100644 --- a/eurorack/Cargo.toml +++ b/eurorack/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Petr Horáček "] edition = "2018" name = "achordion-eurorack" -version = "2.2.1" # hack/release.sh +version = "2.3.0" # hack/release.sh license = "GPL-3.0-or-later" description = "Chord-crafting quantizing wavetable oscillator module for Eurorack." repository = "https://github.com/zlosynth/achordion" diff --git a/hardware/Achordion.kicad_pcb b/hardware/Achordion.kicad_pcb index 7109f62..895d0d2 100644 --- a/hardware/Achordion.kicad_pcb +++ b/hardware/Achordion.kicad_pcb @@ -8,7 +8,7 @@ (title_block (title "Achordion") (date "2022-02-27") - (rev "v2.2.1") + (rev "v2.3.0") (company "Petr Horáček") (comment 1 "petr@zlosynth.com") (comment 2 "https://github.com/zlosynth/achordion") @@ -4005,7 +4005,7 @@ (gr_text "Petr Horáček , 2022, CC BY-SA" (at 165.65 92.6 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-0000621a2c46) (effects (font (size 1.2 1.1) (thickness 0.15))) ) - (gr_text "board v2.2.1" (at 165.73 143.92 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-0000621b6893) + (gr_text "board v2.3.0" (at 165.73 143.92 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-0000621b6893) (effects (font (size 1.2 1.1) (thickness 0.15)) (justify left)) ) (gr_text "Achordion," (at 165.72 152.88 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-0000621e1412) diff --git a/hardware/Achordion.kicad_sch b/hardware/Achordion.kicad_sch index c03cab4..ad909d1 100644 --- a/hardware/Achordion.kicad_sch +++ b/hardware/Achordion.kicad_sch @@ -7,7 +7,7 @@ (title_block (title "Achordion") (date "2022-02-27") - (rev "v2.2.1") + (rev "v2.3.0") (company "Petr Horáček") (comment 1 "petr@zlosynth.com") (comment 2 "https://github.com/zlosynth/achordion") diff --git a/lib/Cargo.lock b/lib/Cargo.lock index 06cbe27..4fb1d06 100644 --- a/lib/Cargo.lock +++ b/lib/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "achordion-bank" -version = "2.2.1" +version = "2.3.0" dependencies = [ "microfft", "micromath", @@ -13,7 +13,7 @@ dependencies = [ [[package]] name = "achordion-lib" -version = "2.2.1" +version = "2.3.0" dependencies = [ "achordion-bank", "approx", diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 76a3837..cf521ff 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Petr Horáček "] edition = "2018" name = "achordion-lib" -version = "2.2.1" # hack/release.sh +version = "2.3.0" # hack/release.sh license = "GPL-3.0-or-later" description = "Chord-crafting quantizing wavetable oscillator." repository = "https://github.com/zlosynth/achordion"