diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a0fbe37..be49c55e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # CHANGELOG +## v3.126.0 (2026-05-26) + +### Features + +- Add logger import and initialize logger in v4_scan template + ([`8ba7386`](https://github.com/bec-project/bec/commit/8ba7386e281e13f14832293cf0c8652f9ba7e5f1)) + + ## v3.125.2 (2026-05-26) ### Bug Fixes diff --git a/bec_ipython_client/pyproject.toml b/bec_ipython_client/pyproject.toml index c1e260d1..88200d0b 100644 --- a/bec_ipython_client/pyproject.toml +++ b/bec_ipython_client/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "bec_ipython_client" -version = "3.125.2" +version = "3.126.0" description = "BEC IPython client" requires-python = ">=3.11" classifiers = [ @@ -63,6 +63,7 @@ Homepage = "https://github.com/bec-project/bec" + [tool.hatch.build.targets.wheel] diff --git a/bec_lib/pyproject.toml b/bec_lib/pyproject.toml index d5b708f9..2227cd29 100644 --- a/bec_lib/pyproject.toml +++ b/bec_lib/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "bec_lib" -version = "3.125.2" +version = "3.126.0" description = "BEC library" requires-python = ">=3.11" classifiers = [ @@ -74,6 +74,7 @@ Homepage = "https://github.com/bec-project/bec" + [tool.hatch.build.targets.wheel] include = ["*"] diff --git a/bec_server/pyproject.toml b/bec_server/pyproject.toml index 7559ffec..0857f5df 100644 --- a/bec_server/pyproject.toml +++ b/bec_server/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "bec-server" -version = "3.125.2" +version = "3.126.0" description = "BEC server" requires-python = ">=3.11" classifiers = [ @@ -76,6 +76,7 @@ Homepage = "https://github.com/bec-project/bec" + [tool.hatch.build.targets.wheel] diff --git a/pytest_bec_e2e/pyproject.toml b/pytest_bec_e2e/pyproject.toml index 8086caca..fdc287c6 100644 --- a/pytest_bec_e2e/pyproject.toml +++ b/pytest_bec_e2e/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "pytest-bec-e2e" -version = "3.125.2" +version = "3.126.0" description = "BEC pytest plugin for end-to-end tests" requires-python = ">=3.11" classifiers = [ @@ -48,6 +48,7 @@ Homepage = "https://github.com/bec-project/bec" + [tool.hatch.build.targets.wheel]