From 781b8436a39e6de91f9528d78c9c3d66bd8db0e3 Mon Sep 17 00:00:00 2001 From: retoor Date: Sun, 9 Nov 2025 17:03:37 +0100 Subject: [PATCH] maintenance: bump version to 1.7.0 maintenance: update changelog with release notes maintenance: update __version__ in dataset/__init__ --- CHANGELOG.md | 8 ++++++++ dataset/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff1feb6..f5d9f60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # 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 changes must be reconstructed from revision history.* diff --git a/dataset/__init__.py b/dataset/__init__.py index 82576a0..27f2f9f 100644 --- a/dataset/__init__.py +++ b/dataset/__init__.py @@ -11,7 +11,7 @@ warnings.filterwarnings( ) __all__ = ["Database", "Table", "connect"] -__version__ = "1.6.2" +__version__ = "1.7.0" def connect( diff --git a/setup.py b/setup.py index 4097af5..95c8280 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md") as f: setup( name="dataset", - version="1.6.2", + version="1.7.0", description="Toolkit for Python-based database access.", long_description=long_description, long_description_content_type="text/markdown",