Skip to content

Commit 6ac26d6

Browse files
ckunkiNicoretti
andauthored
#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 <[email protected]>
1 parent 7b16d26 commit 6ac26d6

File tree

6 files changed

+19
-13
lines changed

6 files changed

+19
-13
lines changed

doc/changes/changelog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# 📝 Changes
22

33
* [unreleased](unreleased.md)
4+
* [0.14.0](changes_0.14.0.md)
45
* [0.13.0](changes_0.13.0.md)
56
* [0.12.0](changes_0.12.0.md)
67
* [0.11.0](changes_0.11.0.md)
@@ -20,6 +21,7 @@
2021
hidden:
2122
---
2223
unreleased
24+
changes_0.14.0
2325
changes_0.13.0
2426
changes_0.12.0
2527
changes_0.11.0

doc/changes/changes_0.14.0.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# 0.14.0 - 2024-11-26
2+
3+
## Bugfixes
4+
5+
* #158: Implemented operator `__eq__` for BucketPath to compare string representation
6+
7+
## Internal
8+
9+
* Relock dependencies
10+
* Dropped the support for Python 3.8
11+
12+
## Refactoring
13+
14+
* #170: Moved the tests from using pytest-exasol-saas to pytest-exasol-backend.
15+
* #173: Added file `py.typed`

doc/changes/unreleased.md

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1 @@
11
# Unreleased
2-
3-
## Bugfixes
4-
5-
* #158: Implemented operator `__eq__` for BucketPath to compare string representation
6-
7-
## Internal
8-
- Relock dependencies
9-
- Dropped the support for Python 3.8
10-
11-
## Refactoring
12-
- #170: Moved the tests from using pytest-exasol-saas to pytest-exasol-backend.

exasol/bucketfs/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
# Do not edit this file manually!
66
# If you need to change the version, do so in the project.toml, e.g. by using `poetry version X.Y.Z`.
77
MAJOR = 0
8-
MINOR = 13
8+
MINOR = 14
99
PATCH = 0
1010
VERSION = f"{MAJOR}.{MINOR}.{PATCH}"

py.typed

Whitespace-only changes.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ packages = [
1010
{include = "exasol"},
1111
{include = "exasol_bucketfs_utils_python"}
1212
]
13-
version = "0.13.0"
13+
version = "0.14.0"
1414
description = "BucketFS utilities for the Python programming language"
1515

1616
license = "MIT"

0 commit comments

Comments
 (0)