diff --git a/CHANGELOG.md b/CHANGELOG.md index 42cdc85d..4c72fe9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## v1.14.2 (2024-03-12) + +### Fix + +* Remove debug prints from livetable ([`7efb387`](https://gitlab.psi.ch/bec/bec/-/commit/7efb3878d8687ba4e747c99e517d4c6df40c6965)) +* Add recovery_config files to .gitignore ([`6201757`](https://gitlab.psi.ch/bec/bec/-/commit/62017574baea74dfff5f4d13ea1d1886ee6581a8)) + ## v1.14.1 (2024-03-11) ### Fix diff --git a/bec_client/setup.py b/bec_client/setup.py index f75d13f1..c4e018fb 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.14.1" +__version__ = "1.14.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 e1519feb..7ffca103 100644 --- a/bec_lib/setup.py +++ b/bec_lib/setup.py @@ -1,6 +1,6 @@ from setuptools import setup -__version__ = "1.14.1" +__version__ = "1.14.2" if __name__ == "__main__": setup( diff --git a/bec_server/setup.py b/bec_server/setup.py index 186c600c..dad64f03 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.14.1" +__version__ = "1.14.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 29b4dc5a..2f9e9e55 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.14.1" +__version__ = "1.14.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 e139e17f..d3a76f12 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.14.1" +__version__ = "1.14.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 07ef49d6..4dbbd3af 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.14.1" +__version__ = "1.14.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 2901ba4f..3275b678 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.14.1" +__version__ = "1.14.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 fe414b60..fdd2de19 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.14.1" +__version__ = "1.14.2" def run_install(setup_args: dict, bec_deps: list, editable=False): diff --git a/scihub/setup.py b/scihub/setup.py index a1cb16fe..825ebbf7 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.14.1" +__version__ = "1.14.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 4454c8d4..a19f6e1d 100644 --- a/semantic_release/__init__.py +++ b/semantic_release/__init__.py @@ -1 +1 @@ -__version__ = "1.14.1" +__version__ = "1.14.2"