diff --git a/CHANGELOG.md b/CHANGELOG.md
index a4e4897..7d58b4d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,12 @@
+## v2.0.5 - 2021-05-31
+
+### Added
+- Bohlen-Pierce tuning (two mappings)
+- Optional crosstalk filter (for testing)
+
+### Fixed
+- Portamento was not working in some situations
+
## v2.0.4 - 2021-05-14
### Added
diff --git a/doc/strisoboard-settings.svg b/doc/strisoboard-settings.svg
index 2185927..e773f7f 100644
--- a/doc/strisoboard-settings.svg
+++ b/doc/strisoboard-settings.svg
@@ -1436,7 +1436,7 @@
id="tspan13734"
x="195.11015"
y="635.07556"
- style="font-size:3.88055563px;text-align:center;text-anchor:middle">-
+ style="font-size:3.88055563px;text-align:center;text-anchor:middle">BP¹
-
+ sodipodi:role="line">BP²
+ style="fill:#ff40d4;fill-opacity:1;stroke:#000000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+ style="fill:#ff0202;fill-opacity:1;stroke:#000000;stroke-width:0.2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
(future use)
+ filtertest
diff --git a/synth_control.cpp b/synth_control.cpp
index bf739e8..19447ec 100644
--- a/synth_control.cpp
+++ b/synth_control.cpp
@@ -506,10 +506,12 @@ class Instrument {
case (31): { // set Bohlen-Pierce tuning thirds 13et
notegen0 = 10.2413f;
notegen1 = 5.8522f;
+ update_leds();
} return;
case (33): { // set Bohlen-Pierce tuning sixts 13tet
notegen0 = 19.0196f;
notegen1 = 10.2413f;
+ update_leds();
} return;
// row 6: 35 37 39 41 43 45 30 32
#ifdef USE_MIDI_OUT