diff --git a/CHANGELOG.md b/CHANGELOG.md index 068a0284..cf2c5e34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ The previous change: had an import error that I didn't see in my testing. We changed this further to: - Base automations now subclass from `pioreactor.automations.base.AutomationJob`. - +- Fix bug on /updates page. ### 23.9.19 - When installing plugins, any leader-only commands would not be run. This is fixed. diff --git a/pioreactor/version.py b/pioreactor/version.py index 566513bc..4ebbc993 100644 --- a/pioreactor/version.py +++ b/pioreactor/version.py @@ -5,7 +5,7 @@ # Append "dev" if a dev version # Append "rc0" if a rc version -__version__ = "23.9.19dev" +__version__ = "23.9.20" def _get_hardware_version() -> tuple[int, int] | tuple[int, int, str]: diff --git a/update_scripts/23.9.20/update.sh b/update_scripts/23.9.20/update.sh new file mode 100644 index 00000000..957a76fe --- /dev/null +++ b/update_scripts/23.9.20/update.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +set -x +set -e + +export LC_ALL=C + +# this is a duplicate of 23.9.19 + +wget -O /usr/local/bin/install_pioreactor_plugin.sh https://raw.githubusercontent.com/Pioreactor/CustoPiZer/1d95fa4952398aab1dda09f8cc6d79a8e72197d4/workspace/scripts/files/bash/install_pioreactor_plugin.sh +sudo chown pioreactor:pioreactor /home/pioreactor/.pioreactor/experiment_profiles/demo_stirring_example.yaml || true