From 6ac26d6b956b7f8401e7467bd966fa85f57c553e Mon Sep 17 00:00:00 2001 From: Christoph Kuhnke Date: Tue, 26 Nov 2024 11:33:18 +0100 Subject: [PATCH] #173: Added file py.typed (#174) * #173: Added file py.typed * Prepare release 0.14.0 * Apply suggestions from code review Co-authored-by: Nicola Coretti --- doc/changes/changelog.md | 2 ++ doc/changes/changes_0.14.0.md | 15 +++++++++++++++ doc/changes/unreleased.md | 11 ----------- exasol/bucketfs/version.py | 2 +- py.typed | 0 pyproject.toml | 2 +- 6 files changed, 19 insertions(+), 13 deletions(-) create mode 100644 doc/changes/changes_0.14.0.md create mode 100644 py.typed diff --git a/doc/changes/changelog.md b/doc/changes/changelog.md index 7711d59c..9290f650 100644 --- a/doc/changes/changelog.md +++ b/doc/changes/changelog.md @@ -1,6 +1,7 @@ # 📝 Changes * [unreleased](unreleased.md) +* [0.14.0](changes_0.14.0.md) * [0.13.0](changes_0.13.0.md) * [0.12.0](changes_0.12.0.md) * [0.11.0](changes_0.11.0.md) @@ -20,6 +21,7 @@ hidden: --- unreleased +changes_0.14.0 changes_0.13.0 changes_0.12.0 changes_0.11.0 diff --git a/doc/changes/changes_0.14.0.md b/doc/changes/changes_0.14.0.md new file mode 100644 index 00000000..14d03adc --- /dev/null +++ b/doc/changes/changes_0.14.0.md @@ -0,0 +1,15 @@ +# 0.14.0 - 2024-11-26 + +## Bugfixes + +* #158: Implemented operator `__eq__` for BucketPath to compare string representation + +## Internal + +* Relock dependencies +* Dropped the support for Python 3.8 + +## Refactoring + +* #170: Moved the tests from using pytest-exasol-saas to pytest-exasol-backend. +* #173: Added file `py.typed` \ No newline at end of file diff --git a/doc/changes/unreleased.md b/doc/changes/unreleased.md index 9b53268e..79e701b8 100644 --- a/doc/changes/unreleased.md +++ b/doc/changes/unreleased.md @@ -1,12 +1 @@ # Unreleased - -## Bugfixes - -* #158: Implemented operator `__eq__` for BucketPath to compare string representation - -## Internal -- Relock dependencies -- Dropped the support for Python 3.8 - -## Refactoring -- #170: Moved the tests from using pytest-exasol-saas to pytest-exasol-backend. diff --git a/exasol/bucketfs/version.py b/exasol/bucketfs/version.py index 9ac5e232..5f208519 100644 --- a/exasol/bucketfs/version.py +++ b/exasol/bucketfs/version.py @@ -5,6 +5,6 @@ # Do not edit this file manually! # If you need to change the version, do so in the project.toml, e.g. by using `poetry version X.Y.Z`. MAJOR = 0 -MINOR = 13 +MINOR = 14 PATCH = 0 VERSION = f"{MAJOR}.{MINOR}.{PATCH}" diff --git a/py.typed b/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/pyproject.toml b/pyproject.toml index 8d2e7acc..86bebfa5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ packages = [ {include = "exasol"}, {include = "exasol_bucketfs_utils_python"} ] -version = "0.13.0" +version = "0.14.0" description = "BucketFS utilities for the Python programming language" license = "MIT"