Skip to content

Commit c519168

Browse files
committed
Bump version to v0.7.1
Release v0.7.1 with native precision support and architectural improvements: - Native float32/float64 precision throughout the entire stack - Eliminated idx2exact complexity for simpler code - Auto-detection for precision based on dtype and file loading - Advanced precision control (adaptive epsilon, configurable epsilon) - Fixed precision validation gaps and query precision issues Changes: - pyproject.toml: 0.7.0 → 0.7.1 - __init__.py: 0.7.0 → 0.7.1 - CHANGES.md: Updated release date to 2025-11-09 - README.md: Updated version history to v0.7.1
1 parent afe19a3 commit c519168

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# PRTree Improvements
22

3-
## v0.7.0 - Native Precision Support (2025-01-XX)
3+
## v0.7.1 - Native Precision Support (2025-11-09)
44

55
### Major Architectural Changes
66

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ PRTree2D(filename) # Load from file
235235

236236
## Version History
237237

238-
### v0.7.0 (Latest)
238+
### v0.7.1 (Latest)
239239
- **Native precision support**: True float32/float64 precision throughout the entire stack
240240
- **Architectural refactoring**: Eliminated idx2exact complexity for simpler, faster code
241241
- **Auto-detection**: Precision automatically selected based on input dtype and when loading files

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "python_prtree"
7-
version = "0.7.0"
7+
version = "0.7.1"
88
description = "Python implementation of Priority R-Tree"
99
readme = "README.md"
1010
requires-python = ">=3.8"

src/python_prtree/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
from .core import PRTree2D, PRTree3D, PRTree4D
3434

35-
__version__ = "0.7.0"
35+
__version__ = "0.7.1"
3636

3737
__all__ = [
3838
"PRTree2D",

0 commit comments

Comments
 (0)