Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#173: Added file py.typed #174

Merged
merged 3 commits into from
Nov 26, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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}"
2 changes: 2 additions & 0 deletions py.typed
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# This file adds type hints to the wheel published to pypi and enables other
# projects importing exasol.bucketfs without ignoring typing.
ckunki marked this conversation as resolved.
Show resolved Hide resolved
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
Loading