diff --git a/doc/changes/changelog.md b/doc/changes/changelog.md index ec8b78e..4e3393f 100644 --- a/doc/changes/changelog.md +++ b/doc/changes/changelog.md @@ -1,6 +1,7 @@ # 📝 Changes * [unreleased](unreleased.md) +* [0.15.0](changes_0.15.0.md) * [0.14.0](changes_0.14.0.md) * [0.13.1](changes_0.13.1.md) * [0.13.0](changes_0.13.0.md) @@ -24,6 +25,7 @@ hidden: --- unreleased +changes_0.15.0 changes_0.14.0 changes_0.13.1 changes_0.13.0 diff --git a/doc/changes/changes_0.15.0.md b/doc/changes/changes_0.15.0.md new file mode 100644 index 0000000..178d1b2 --- /dev/null +++ b/doc/changes/changes_0.15.0.md @@ -0,0 +1,8 @@ +# 0.15.0 - 2026-04-21 + +## Summary +This release adds a path param to exaudfclient binary + +## Refactoring + +* #144: Added parameter for exaudfclient binary diff --git a/doc/changes/unreleased.md b/doc/changes/unreleased.md index 6401413..fb47370 100644 --- a/doc/changes/unreleased.md +++ b/doc/changes/unreleased.md @@ -1,7 +1,3 @@ # Unreleased ## Summary - -## Refactoring - -* #144: Added parameter for exaudfclient binary diff --git a/exasol/python_extension_common/version.py b/exasol/python_extension_common/version.py index 2d5ea8c..fd3f994 100644 --- a/exasol/python_extension_common/version.py +++ b/exasol/python_extension_common/version.py @@ -9,7 +9,7 @@ """ MAJOR = 0 -MINOR = 14 +MINOR = 15 PATCH = 0 VERSION = f"{MAJOR}.{MINOR}.{PATCH}" __version__ = VERSION diff --git a/pyproject.toml b/pyproject.toml index 3682128..94ae6fe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "exasol-python-extension-common" -version = "0.14.0" +version = "0.15.0" requires-python = ">=3.10,<3.14" description = "A collection of common utilities for Exasol extensions." authors = [