From f68090d1d925b41729cc0ad3a06945c853f87ed6 Mon Sep 17 00:00:00 2001 From: Manos Date: Tue, 28 Jul 2026 19:35:06 +0200 Subject: [PATCH] Bump version to 1.0.9 Syncs the version string across pyproject.toml, setup.py, and daisy/__init__.py (previously drifted: 1.0.8 / 1.0.8 / 1.0.0). Merging this to main will trigger the pypi-release workflow to publish 1.0.9, since 1.0.8 is already live on PyPI. Co-Authored-By: Claude Sonnet 5 --- daisy/__init__.py | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/daisy/__init__.py b/daisy/__init__.py index e3cb0fd..7002cc8 100644 --- a/daisy/__init__.py +++ b/daisy/__init__.py @@ -17,7 +17,7 @@ (distance-r) search via searchIndex(query, SearchConfig(type=QueryType.RANGE, r=r)). """ -__version__ = "1.0.0" +__version__ = "1.0.9" __author__ = "" try: diff --git a/pyproject.toml b/pyproject.toml index 8a95f63..02edcf9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ build-backend = "setuptools.build_meta" [project] name = "daisy-exact-search" -version = "1.0.8" +version = "1.0.9" description = "DaiSy: A Library for Scalable Data Series Similarity Search" readme = "README.md" requires-python = ">=3.10" diff --git a/setup.py b/setup.py index ee7bd93..c13d385 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ from setuptools.command.build_ext import build_ext as _build_ext # Version -__version__ = "1.0.8" +__version__ = "1.0.9" # Detect platform IS_MACOS = sys.platform == "darwin"