Skip to content

Commit

Permalink
#173: Added file py.typed (#174)
Browse files Browse the repository at this point in the history
* #173: Added file py.typed
* Prepare release 0.14.0
* Apply suggestions from code review

Co-authored-by: Nicola Coretti <[email protected]>
  • Loading branch information
ckunki and Nicoretti authored Nov 26, 2024
1 parent 7b16d26 commit 6ac26d6
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 13 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`
11 changes: 0 additions & 11 deletions doc/changes/unreleased.md
Original file line number Diff line number Diff line change
@@ -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.
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}"
Empty file added py.typed
Empty file.
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 6ac26d6

Please sign in to comment.