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"