Skip to content

Commit 2da6f25

Browse files
authored
Release 1.1.0 (#289)
1 parent ffa71c1 commit 2da6f25

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

CREDITS.txt

+5-1
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,12 @@ Matthias <[email protected]>
2626

2727
* Custom storage API (both Rtree and libspatialindex)
2828

29-
3029
Adam Stewart
3130

3231
* intersection/union support
3332
* __len__ method
33+
34+
Mike Taves <[email protected]>
35+
36+
* cibuildwheel configuration
37+
* general maintanance

README.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![PyPI version](https://badge.fury.io/py/Rtree.svg)](https://badge.fury.io/py/Rtree)
55

66

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
88
number of advanced spatial indexing features for the spatially curious Python
99
user. These features include:
1010

@@ -26,6 +26,13 @@ pip install rtree
2626

2727
# Changes
2828

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+
2936
## 1.0.1
3037

3138
* Fix up type hints #243 (thanks @oderby)
@@ -43,5 +50,3 @@ pip install rtree
4350
* Prevent get_coordinate_pointers from mutating inputs #205 (thanks @sjones94549!)
4451
* linux-aarch64 wheels #183 (thanks @odidev!)
4552
* black (#218) and flake8 (#145) linting
46-
47-
https://github.com/Toblerity/rtree/releases/1.0.0

rtree/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
"""
77
from __future__ import annotations
88

9-
__version__ = "1.0.1"
9+
__version__ = "1.1.0"
1010

1111
from .index import Index, Rtree # noqa

0 commit comments

Comments
 (0)