Skip to content

Commit

Permalink
Release 1.1.0 (#289)
Browse files Browse the repository at this point in the history
  • Loading branch information
mwtoews authored Oct 16, 2023
1 parent ffa71c1 commit 2da6f25
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CREDITS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,12 @@ Matthias <[email protected]>

* Custom storage API (both Rtree and libspatialindex)


Adam Stewart

* intersection/union support
* __len__ method

Mike Taves <[email protected]>

* cibuildwheel configuration
* general maintanance
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![PyPI version](https://badge.fury.io/py/Rtree.svg)](https://badge.fury.io/py/Rtree)


Rtree is a [ctypes](http://docs.python.org/library/ctypes.html) Python wrapper of [libspatialindex](https://libspatialindex.org/) that provides a
Rtree is a [ctypes](https://docs.python.org/3/library/ctypes.html) Python wrapper of [libspatialindex](https://libspatialindex.org/) that provides a
number of advanced spatial indexing features for the spatially curious Python
user. These features include:

Expand All @@ -26,6 +26,13 @@ pip install rtree

# Changes

## 1.1.0

* Python 3.8+ is now required (#273)
* Move project metadata to pyproject.toml (#269)
* Refactor built wheels for PyPI (#276)
* Fix memory leak when breaking mid-way in `_get_objects` and `_get_ids` (#266) (thanks @akariv!)

## 1.0.1

* Fix up type hints #243 (thanks @oderby)
Expand All @@ -43,5 +50,3 @@ pip install rtree
* Prevent get_coordinate_pointers from mutating inputs #205 (thanks @sjones94549!)
* linux-aarch64 wheels #183 (thanks @odidev!)
* black (#218) and flake8 (#145) linting

https://github.com/Toblerity/rtree/releases/1.0.0
2 changes: 1 addition & 1 deletion rtree/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
"""
from __future__ import annotations

__version__ = "1.0.1"
__version__ = "1.1.0"

from .index import Index, Rtree # noqa

0 comments on commit 2da6f25

Please sign in to comment.