From 731fdaed885bec2b706c46ff1ae889c7644f43fb Mon Sep 17 00:00:00 2001 From: Petr Horacek Date: Sun, 31 Jul 2022 15:17:35 +0200 Subject: [PATCH] Release version 2.2.1 Signed-off-by: Petr Horacek --- CHANGELOG.md | 2 ++ bank/Cargo.lock | 2 +- bank/Cargo.toml | 2 +- eurorack/Cargo.lock | 6 +++--- eurorack/Cargo.toml | 2 +- hardware/Achordion.kicad_pcb | 4 ++-- hardware/Achordion.kicad_sch | 2 +- lib/Cargo.toml | 2 +- puredata/Cargo.lock | 6 +++--- puredata/Cargo.toml | 2 +- 10 files changed, 16 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ece280..e5acb1e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ backwards compatibility. ## Unreleased +## 2.2.1 + * Split modal playing control to bind mode and scale CVs separately. * Shift the range of TONE' by 2 octaves higher. * Fix scaling of scale tonic CV to properly track 1V/oct. diff --git a/bank/Cargo.lock b/bank/Cargo.lock index aec6a17..ad30eb6 100644 --- a/bank/Cargo.lock +++ b/bank/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "achordion-bank" -version = "2.2.0" +version = "2.2.1" dependencies = [ "microfft", "micromath", diff --git a/bank/Cargo.toml b/bank/Cargo.toml index 6196fde..93b1593 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.0" # hack/release.sh +version = "2.2.1" # 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 ff0df36..9c2b9be 100644 --- a/eurorack/Cargo.lock +++ b/eurorack/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "achordion-bank" -version = "2.2.0" +version = "2.2.1" dependencies = [ "microfft", "micromath", @@ -13,7 +13,7 @@ dependencies = [ [[package]] name = "achordion-eurorack" -version = "2.2.0" +version = "2.2.1" dependencies = [ "achordion-bank", "achordion-lib", @@ -27,7 +27,7 @@ dependencies = [ [[package]] name = "achordion-lib" -version = "2.2.0" +version = "2.2.1" dependencies = [ "crc", "field-offset", diff --git a/eurorack/Cargo.toml b/eurorack/Cargo.toml index 995eb9d..82115ed 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.0" # hack/release.sh +version = "2.2.1" # 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 7249325..1e9b2b3 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.0") + (rev "v2.2.1") (company "Petr Horáček") (comment 1 "petr@zlosynth.com") (comment 2 "https://github.com/zlosynth/achordion") @@ -3082,7 +3082,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.0" (at 165.73 143.92 90) (layer "F.SilkS") (tstamp 00000000-0000-0000-0000-0000621b6893) + (gr_text "board v2.2.1" (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 797ed53..2033e82 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.0") + (rev "v2.2.1") (company "Petr Horáček") (comment 1 "petr@zlosynth.com") (comment 2 "https://github.com/zlosynth/achordion") diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 19e4ff1..5820f98 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.0" # hack/release.sh +version = "2.2.1" # hack/release.sh license = "GPL-3.0-or-later" description = "Chord-crafting quantizing wavetable oscillator." repository = "https://github.com/zlosynth/achordion" diff --git a/puredata/Cargo.lock b/puredata/Cargo.lock index 06e6b50..19f160c 100644 --- a/puredata/Cargo.lock +++ b/puredata/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "achordion-bank" -version = "2.2.0" +version = "2.2.1" dependencies = [ "microfft", "micromath", @@ -13,7 +13,7 @@ dependencies = [ [[package]] name = "achordion-lib" -version = "2.2.0" +version = "2.2.1" dependencies = [ "crc", "field-offset", @@ -23,7 +23,7 @@ dependencies = [ [[package]] name = "achordion-puredata" -version = "2.2.0" +version = "2.2.1" dependencies = [ "achordion-bank", "achordion-lib", diff --git a/puredata/Cargo.toml b/puredata/Cargo.toml index 006275c..1f98b5d 100644 --- a/puredata/Cargo.toml +++ b/puredata/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Petr Horáček "] edition = "2018" name = "achordion-puredata" -version = "2.2.0" # hack/release.sh +version = "2.2.1" # hack/release.sh license = "GPL-3.0-or-later" description = "Chord-crafting quantizing wavetable oscillator external for Pure Data." repository = "https://github.com/zlosynth/achordion"