Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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: 1 addition & 1 deletion daisy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading