From 58e6494155f13f8e787be1c770bdb1f0c18ba4b5 Mon Sep 17 00:00:00 2001 From: Mike Taves Date: Fri, 19 Jan 2024 23:28:23 +1300 Subject: [PATCH] Release 1.2.0 (#300) --- CHANGES.rst | 6 ++++++ pyproject.toml | 1 + rtree/__init__.py | 2 +- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index 389ca4ba..92978aa8 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,9 @@ +1.2.0: 2024-01-19 +================= + +- Fix test failure with built library (:PR:`291` by :user:`sebastic`) +- Include spatialindex headers and add :py:meth:`~rtree.finder.get_include` (:PR:`292` by :user:`JDBetteridge`) + 1.1.0: 2023-10-17 ================= diff --git a/pyproject.toml b/pyproject.toml index de6813b2..cb26095f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,6 +9,7 @@ authors = [ ] maintainers = [ {name = "Howard Butler", email = "howard@hobu.co"}, + {name = "Mike Taves", email = "mwtoews@gmail.com"}, ] description = "R-Tree spatial index for Python GIS" readme = "README.md" diff --git a/rtree/__init__.py b/rtree/__init__.py index 6a609fde..a9c0e088 100644 --- a/rtree/__init__.py +++ b/rtree/__init__.py @@ -6,6 +6,6 @@ """ from __future__ import annotations -__version__ = "1.1.0" +__version__ = "1.2.0" from .index import Index, Rtree # noqa