diff --git a/CHANGELOG.md b/CHANGELOG.md index c9b171e1..260193d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v1.7.2 (2024-02-19) + +### Fix + +* **endpoints:** Added gui_instruction_response endpoint ([`9a838bb`](https://gitlab.psi.ch/bec/bec/-/commit/9a838bbe8e7fab974982654bdc9f69a14edf7a20)) +* **live_table:** Fixed live table for string values ([`3b04d31`](https://gitlab.psi.ch/bec/bec/-/commit/3b04d319f9f8d56a8e8c2d6fec9802cc7e747ad3)) + ## v1.7.1 (2024-02-16) ### Fix diff --git a/bec_client/setup.py b/bec_client/setup.py index 26185f98..e41a6968 100644 --- a/bec_client/setup.py +++ b/bec_client/setup.py @@ -10,7 +10,7 @@ current_path = pathlib.Path(__file__).parent.resolve() bec_lib = f"{current_path}/../bec_lib/" -__version__ = "1.7.1" +__version__ = "1.7.2" def run_install(setup_args: dict, bec_deps: list, editable=False): diff --git a/bec_lib/setup.py b/bec_lib/setup.py index 2665d6d6..cf5c7e5d 100644 --- a/bec_lib/setup.py +++ b/bec_lib/setup.py @@ -1,6 +1,6 @@ from setuptools import setup -__version__ = "1.7.1" +__version__ = "1.7.2" if __name__ == "__main__": setup( diff --git a/bec_server/setup.py b/bec_server/setup.py index 4311eb65..29e11a52 100644 --- a/bec_server/setup.py +++ b/bec_server/setup.py @@ -7,7 +7,7 @@ from setuptools import setup current_path = pathlib.Path(__file__).parent.resolve() -__version__ = "1.7.1" +__version__ = "1.7.2" def run_install(setup_args: dict, bec_deps: list, editable=False): diff --git a/data_processing/setup.py b/data_processing/setup.py index dae8317a..4e708012 100644 --- a/data_processing/setup.py +++ b/data_processing/setup.py @@ -9,7 +9,7 @@ current_path = pathlib.Path(__file__).parent.resolve() bec_lib = f"{current_path}/../bec_lib/" -__version__ = "1.7.1" +__version__ = "1.7.2" def run_install(setup_args: dict, bec_deps: list, editable=False): diff --git a/device_server/setup.py b/device_server/setup.py index dc71adb2..e90d26c1 100644 --- a/device_server/setup.py +++ b/device_server/setup.py @@ -11,7 +11,7 @@ bec_lib = f"{current_path}/../bec_lib/" ophyd_devices = os.getenv("OPHYD_DEVICES_PATH", f"{current_path}/../../ophyd_devices/") -__version__ = "1.7.1" +__version__ = "1.7.2" def run_install(setup_args: dict, bec_deps: list, editable=False): diff --git a/file_writer/setup.py b/file_writer/setup.py index 887cad23..512f51df 100644 --- a/file_writer/setup.py +++ b/file_writer/setup.py @@ -9,7 +9,7 @@ current_path = pathlib.Path(__file__).parent.resolve() bec_lib = f"{current_path}/../bec_lib/" -__version__ = "1.7.1" +__version__ = "1.7.2" def run_install(setup_args: dict, bec_deps: list, editable=False): diff --git a/scan_bundler/setup.py b/scan_bundler/setup.py index 9d09cfe1..f7bfe682 100644 --- a/scan_bundler/setup.py +++ b/scan_bundler/setup.py @@ -9,7 +9,7 @@ current_path = pathlib.Path(__file__).parent.resolve() bec_lib = f"{current_path}/../bec_lib/" -__version__ = "1.7.1" +__version__ = "1.7.2" def run_install(setup_args: dict, bec_deps: list, editable=False): diff --git a/scan_server/setup.py b/scan_server/setup.py index 1be3a247..751f33e7 100644 --- a/scan_server/setup.py +++ b/scan_server/setup.py @@ -9,7 +9,7 @@ current_path = pathlib.Path(__file__).parent.resolve() bec_lib = f"{current_path}/../bec_lib/" -__version__ = "1.7.1" +__version__ = "1.7.2" def run_install(setup_args: dict, bec_deps: list, editable=False): diff --git a/scihub/setup.py b/scihub/setup.py index 36e7e210..03b16110 100644 --- a/scihub/setup.py +++ b/scihub/setup.py @@ -10,7 +10,7 @@ current_path = pathlib.Path(__file__).parent.resolve() bec_lib = f"{current_path}/../bec_lib/" -__version__ = "1.7.1" +__version__ = "1.7.2" def run_install(setup_args: dict, bec_deps: list, editable=False): diff --git a/semantic_release/__init__.py b/semantic_release/__init__.py index 3c1e9cbd..1db13ec2 100644 --- a/semantic_release/__init__.py +++ b/semantic_release/__init__.py @@ -1 +1 @@ -__version__ = "1.7.1" +__version__ = "1.7.2"