Commit 2da6f25 1 parent ffa71c1 commit 2da6f25 Copy full SHA for 2da6f25
File tree 3 files changed +14
-5
lines changed
3 files changed +14
-5
lines changed Original file line number Diff line number Diff line change 26
26
27
27
* Custom storage API (both Rtree and libspatialindex)
28
28
29
-
30
29
Adam Stewart
31
30
32
31
* intersection/union support
33
32
* __len__ method
33
+
34
+
35
+
36
+ * cibuildwheel configuration
37
+ * general maintanance
Original file line number Diff line number Diff line change 4
4
[ ![ PyPI version] ( https://badge.fury.io/py/Rtree.svg )] ( https://badge.fury.io/py/Rtree )
5
5
6
6
7
- Rtree is a [ ctypes] ( http ://docs.python.org/library/ctypes.html) Python wrapper of [ libspatialindex] ( https://libspatialindex.org/ ) that provides a
7
+ Rtree is a [ ctypes] ( https ://docs.python.org/3 /library/ctypes.html) Python wrapper of [ libspatialindex] ( https://libspatialindex.org/ ) that provides a
8
8
number of advanced spatial indexing features for the spatially curious Python
9
9
user. These features include:
10
10
@@ -26,6 +26,13 @@ pip install rtree
26
26
27
27
# Changes
28
28
29
+ ## 1.1.0
30
+
31
+ * Python 3.8+ is now required (#273 )
32
+ * Move project metadata to pyproject.toml (#269 )
33
+ * Refactor built wheels for PyPI (#276 )
34
+ * Fix memory leak when breaking mid-way in ` _get_objects ` and ` _get_ids ` (#266 ) (thanks @akariv !)
35
+
29
36
## 1.0.1
30
37
31
38
* Fix up type hints #243 (thanks @oderby )
@@ -43,5 +50,3 @@ pip install rtree
43
50
* Prevent get_coordinate_pointers from mutating inputs #205 (thanks @sjones94549 !)
44
51
* linux-aarch64 wheels #183 (thanks @odidev !)
45
52
* black (#218 ) and flake8 (#145 ) linting
46
-
47
- https://github.com/Toblerity/rtree/releases/1.0.0
Original file line number Diff line number Diff line change 6
6
"""
7
7
from __future__ import annotations
8
8
9
- __version__ = "1.0.1 "
9
+ __version__ = "1.1.0 "
10
10
11
11
from .index import Index , Rtree # noqa
You can’t perform that action at this time.
0 commit comments