From 2da6f25ed30912d8f52d247804e9643d994c7d82 Mon Sep 17 00:00:00 2001 From: Mike Taves Date: Tue, 17 Oct 2023 09:41:15 +1300 Subject: [PATCH] Release 1.1.0 (#289) --- CREDITS.txt | 6 +++++- README.md | 11 ++++++++--- rtree/__init__.py | 2 +- 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/CREDITS.txt b/CREDITS.txt index 1f4c5af6..5b19c580 100644 --- a/CREDITS.txt +++ b/CREDITS.txt @@ -26,8 +26,12 @@ Matthias * Custom storage API (both Rtree and libspatialindex) - Adam Stewart * intersection/union support * __len__ method + +Mike Taves + +* cibuildwheel configuration +* general maintanance diff --git a/README.md b/README.md index 8e5235ff..3c2acfd7 100644 --- a/README.md +++ b/README.md @@ -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: @@ -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) @@ -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 diff --git a/rtree/__init__.py b/rtree/__init__.py index 6bfe8986..6a609fde 100644 --- a/rtree/__init__.py +++ b/rtree/__init__.py @@ -6,6 +6,6 @@ """ from __future__ import annotations -__version__ = "1.0.1" +__version__ = "1.1.0" from .index import Index, Rtree # noqa