Skip to content

Commit b703e6d

Browse files
authored
chore: Bump python package version to 0.2.1 (#139)
1 parent 3e18e26 commit b703e6d

File tree

3 files changed

+21
-5
lines changed

3 files changed

+21
-5
lines changed

python/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## [0.2.1] - 2025-09-05
4+
5+
### What's Changed
6+
7+
- Fix panic when building STR tree with certain number of items; fix hanging when building empty index by @Kontinuation in https://github.com/kylebarron/geo-index/pull/129
8+
- Check buffer length before parsing tree headers by @kylebarron in https://github.com/kylebarron/geo-index/pull/131
9+
- perf: Optimize the performance of RTree search by @kylebarron in https://github.com/kylebarron/geo-index/pull/136
10+
- fix: Fix stack overflow in degenerate cases by @kylebarron in https://github.com/kylebarron/geo-index/pull/137
11+
- Bump deps and fix lints by @kylebarron in https://github.com/kylebarron/geo-index/pull/138
12+
13+
### New Contributors
14+
15+
- @Kontinuation made their first contribution in https://github.com/kylebarron/geo-index/pull/127
16+
17+
**Full Changelog**: https://github.com/kylebarron/geo-index/compare/py-v0.2.0...py-v0.2.1
18+
319
## [0.2.0] - 2025-01-06
420

521
### New Features

python/Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

python/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "geoindex-rs"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
authors = ["Kyle Barron <[email protected]>"]
55
edition = "2021"
66
description = "Fast, memory-efficient 2D spatial indexes for Python."
@@ -21,7 +21,7 @@ arrow-array = "56.1.0"
2121
arrow-buffer = "56.1.0"
2222
arrow-cast = "56.1.0"
2323
arrow-schema = "56.1.0"
24-
bytemuck = "1.21.0"
24+
bytemuck = "1.23.0"
2525
bytes = "1.10"
2626
geo-index = { path = "../", features = ["rayon"] }
2727
numpy = "0.26"

0 commit comments

Comments
 (0)