diff --git a/CHANGELOG.md b/CHANGELOG.md index bf9e5099..675ab8c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ +## v0.38.1 (2023-11-02) + +### Fix + +* Fixed nested get for missing fields ([`9be82f1`](https://gitlab.psi.ch/bec/bec/-/commit/9be82f12c6b42e99c61eeacc6185c663f95c9ab6)) + ## v0.38.0 (2023-11-01) ### Feature diff --git a/bec_client/setup.py b/bec_client/setup.py index 2b340d5b..8a6c7e68 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__ = "0.38.0" +__version__ = "0.38.1" def run_install(setup_args: dict, bec_deps: list, editable=False): diff --git a/bec_lib/setup.py b/bec_lib/setup.py index dd7e1af9..086ff572 100644 --- a/bec_lib/setup.py +++ b/bec_lib/setup.py @@ -1,6 +1,6 @@ from setuptools import setup -__version__ = "0.38.0" +__version__ = "0.38.1" if __name__ == "__main__": setup( diff --git a/bec_server/setup.py b/bec_server/setup.py index f7fb9f35..bd45d640 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__ = "0.38.0" +__version__ = "0.38.1" def run_install(setup_args: dict, bec_deps: list, editable=False): diff --git a/data_processing/setup.py b/data_processing/setup.py index 59144271..84609135 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__ = "0.38.0" +__version__ = "0.38.1" def run_install(setup_args: dict, bec_deps: list, editable=False): diff --git a/device_server/setup.py b/device_server/setup.py index 41681c76..f531226a 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__ = "0.38.0" +__version__ = "0.38.1" def run_install(setup_args: dict, bec_deps: list, editable=False): diff --git a/file_writer/setup.py b/file_writer/setup.py index be1461ac..283d4492 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__ = "0.38.0" +__version__ = "0.38.1" def run_install(setup_args: dict, bec_deps: list, editable=False): diff --git a/scan_bundler/setup.py b/scan_bundler/setup.py index 1cb4e86a..bcb0e3e2 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__ = "0.38.0" +__version__ = "0.38.1" def run_install(setup_args: dict, bec_deps: list, editable=False): diff --git a/scan_server/setup.py b/scan_server/setup.py index cbafefb1..ff2bb4f2 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__ = "0.38.0" +__version__ = "0.38.1" def run_install(setup_args: dict, bec_deps: list, editable=False): diff --git a/scihub/setup.py b/scihub/setup.py index ef62b2a2..b29ff8db 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__ = "0.38.0" +__version__ = "0.38.1" def run_install(setup_args: dict, bec_deps: list, editable=False): diff --git a/semantic_release/__init__.py b/semantic_release/__init__.py index 978180b4..53b39ad3 100644 --- a/semantic_release/__init__.py +++ b/semantic_release/__init__.py @@ -1 +1 @@ -__version__ = "0.38.0" +__version__ = "0.38.1"