diff --git a/docs/changelog/1.0.2.rst b/docs/changelog/1.0.2.rst new file mode 100644 index 0000000..858c821 --- /dev/null +++ b/docs/changelog/1.0.2.rst @@ -0,0 +1,7 @@ +1.0.2 (2025-01-28) +================== + +Features +-------- + +- Allow using `etl-entities==2.5.0 `_. (:github:pull:`40`) diff --git a/docs/changelog/index.rst b/docs/changelog/index.rst index 14db734..aafab9d 100644 --- a/docs/changelog/index.rst +++ b/docs/changelog/index.rst @@ -3,6 +3,7 @@ :caption: Changelog DRAFT + 1.0.2 1.0.1 1.0.0 0.1.6 diff --git a/docs/changelog/next_release/40.feature.rst b/docs/changelog/next_release/40.feature.rst deleted file mode 100644 index 8fa1dc4..0000000 --- a/docs/changelog/next_release/40.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Allow using `etl-entities==2.5.0 `_. diff --git a/horizon_hwm_store/__init__.py b/horizon_hwm_store/__init__.py index ba974ff..2dea137 100644 --- a/horizon_hwm_store/__init__.py +++ b/horizon_hwm_store/__init__.py @@ -1,5 +1,6 @@ # SPDX-FileCopyrightText: 2023-2025 MTS PJSC # SPDX-License-Identifier: Apache-2.0 from horizon_hwm_store.horizon_hwm_store import HorizonHWMStore +from horizon_hwm_store.version import __version__ -__all__ = ["HorizonHWMStore"] +__all__ = ["HorizonHWMStore", "__version__"]