Automatically generated by python-semantic-release
This commit is contained in:
semantic-release 2023-08-20 15:15:22 +00:00 committed by ci_update_bot
parent 2c7b55f828
commit 11659fa7cd
11 changed files with 23 additions and 10 deletions

View File

@ -2,6 +2,19 @@
<!--next-version-placeholder-->
## v0.20.0 (2023-08-20)
### Feature
* Added device precision to rpc base class ([`2c7b55f`](https://gitlab.psi.ch/bec/bec/-/commit/2c7b55f828f3f68ff05095a007724e499797126b))
* Added option to specify thread names ([`cae0ba2`](https://gitlab.psi.ch/bec/bec/-/commit/cae0ba2d3ea659a7de3936acdc257e1aa0991311))
* Added support for multiple queues; still WIP ([`9019cc2`](https://gitlab.psi.ch/bec/bec/-/commit/9019cc2c7443c38c47160af843eef7e3f070a25b))
### Fix
* Fixed interceptions for multiple queues ([`4e5d0da`](https://gitlab.psi.ch/bec/bec/-/commit/4e5d0da38b06f11e6abe5ce23687cdf237c9ffeb))
* Removed primary queue from init; cleanup ([`bb04271`](https://gitlab.psi.ch/bec/bec/-/commit/bb042716fecbc3035483184e494e9e4f3d2d82da))
## v0.19.0 (2023-08-20)
### Feature

View File

@ -10,7 +10,7 @@ current_path = pathlib.Path(__file__).parent.resolve()
bec_lib = f"{current_path}/../bec_lib/"
__version__ = "0.19.0"
__version__ = "0.20.0"
def run_install(setup_args: dict, bec_deps: list, editable=False):

View File

@ -1,6 +1,6 @@
from setuptools import setup
__version__ = "0.19.0"
__version__ = "0.20.0"
if __name__ == "__main__":
setup(

View File

@ -7,7 +7,7 @@ from setuptools import setup
current_path = pathlib.Path(__file__).parent.resolve()
__version__ = "0.19.0"
__version__ = "0.20.0"
def run_install(setup_args: dict, bec_deps: list, editable=False):

View File

@ -9,7 +9,7 @@ current_path = pathlib.Path(__file__).parent.resolve()
bec_lib = f"{current_path}/../bec_lib/"
__version__ = "0.19.0"
__version__ = "0.20.0"
def run_install(setup_args: dict, bec_deps: list, editable=False):

View File

@ -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.19.0"
__version__ = "0.20.0"
def run_install(setup_args: dict, bec_deps: list, editable=False):

View File

@ -9,7 +9,7 @@ current_path = pathlib.Path(__file__).parent.resolve()
bec_lib = f"{current_path}/../bec_lib/"
__version__ = "0.19.0"
__version__ = "0.20.0"
def run_install(setup_args: dict, bec_deps: list, editable=False):

View File

@ -9,7 +9,7 @@ current_path = pathlib.Path(__file__).parent.resolve()
bec_lib = f"{current_path}/../bec_lib/"
__version__ = "0.19.0"
__version__ = "0.20.0"
def run_install(setup_args: dict, bec_deps: list, editable=False):

View File

@ -9,7 +9,7 @@ current_path = pathlib.Path(__file__).parent.resolve()
bec_lib = f"{current_path}/../bec_lib/"
__version__ = "0.19.0"
__version__ = "0.20.0"
def run_install(setup_args: dict, bec_deps: list, editable=False):

View File

@ -10,7 +10,7 @@ current_path = pathlib.Path(__file__).parent.resolve()
bec_lib = f"{current_path}/../bec_lib/"
__version__ = "0.19.0"
__version__ = "0.20.0"
def run_install(setup_args: dict, bec_deps: list, editable=False):

View File

@ -1 +1 @@
__version__ = "0.19.0"
__version__ = "0.20.0"