maintenance: bump version to 1.7.0
Some checks failed
build / python (push) Failing after 1m49s

maintenance: update changelog with release notes
maintenance: update __version__ in dataset/__init__
This commit is contained in:
retoor 2025-11-09 17:03:37 +01:00
parent 73c4c0f4bc
commit 781b8436a3
3 changed files with 10 additions and 2 deletions

View File

@ -1,5 +1,13 @@
# dataset ChangeLog # dataset ChangeLog
## Version 1.7.0 - 2025-11-09
Improved database interactions for faster and more reliable data operations. Updated dependencies and tests to support these changes.
**Changes:** 5 files, 68 lines
**Languages:** Python (68 lines)
*The changelog has only been started with version 0.3.12, previous *The changelog has only been started with version 0.3.12, previous
changes must be reconstructed from revision history.* changes must be reconstructed from revision history.*

View File

@ -11,7 +11,7 @@ warnings.filterwarnings(
) )
__all__ = ["Database", "Table", "connect"] __all__ = ["Database", "Table", "connect"]
__version__ = "1.6.2" __version__ = "1.7.0"
def connect( def connect(

View File

@ -5,7 +5,7 @@ with open("README.md") as f:
setup( setup(
name="dataset", name="dataset",
version="1.6.2", version="1.7.0",
description="Toolkit for Python-based database access.", description="Toolkit for Python-based database access.",
long_description=long_description, long_description=long_description,
long_description_content_type="text/markdown", long_description_content_type="text/markdown",