Skip to content

Commit

Permalink
Prepare release 0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ckunki committed Nov 26, 2024
1 parent ae62f5f commit afb4f53
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 16 deletions.
2 changes: 2 additions & 0 deletions doc/changes/changelog.md
Original file line number Diff line number Diff line change
@@ -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)
Expand All @@ -20,6 +21,7 @@
hidden:
---
unreleased
changes_0.14.0
changes_0.13.0
changes_0.12.0
changes_0.11.0
Expand Down
15 changes: 15 additions & 0 deletions doc/changes/changes_0.14.0.md
Original file line number Diff line number Diff line change
@@ -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`
14 changes: 0 additions & 14 deletions doc/changes/unreleased.md
Original file line number Diff line number Diff line change
@@ -1,15 +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.
* #173: Added file `py.typed`
2 changes: 1 addition & 1 deletion exasol/bucketfs/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit afb4f53

Please sign in to comment.