From cffb52e64619b45637f50f9b7fb0f72d87816ade Mon Sep 17 00:00:00 2001 From: Mike Taves Date: Wed, 10 Jul 2024 12:13:44 +1200 Subject: [PATCH] Release 1.3.0 (#320) --- CHANGES.rst | 8 ++++++++ CREDITS.txt | 2 +- docs/source/performance.rst | 2 +- rtree/__init__.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 92978aa8..e3aa37a3 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,11 @@ +1.3.0: 2024-07-10 +================= + +- Upgrade binary wheels with libspatialindex-2.0.0 (:PR:`316`) +- Fix binary wheels for musllinux wheels (:PR:`316`) +- Update code style, replace isort and black with ruff, modern numpy rng (:PR:`319`) +- Remove libsidx version testing (:PR:`313`) + 1.2.0: 2024-01-19 ================= diff --git a/CREDITS.txt b/CREDITS.txt index 5b19c580..46ffac2f 100644 --- a/CREDITS.txt +++ b/CREDITS.txt @@ -34,4 +34,4 @@ Adam Stewart Mike Taves * cibuildwheel configuration -* general maintanance +* general maintenance diff --git a/docs/source/performance.rst b/docs/source/performance.rst index e4d8d95a..6c2d50d0 100644 --- a/docs/source/performance.rst +++ b/docs/source/performance.rst @@ -40,7 +40,7 @@ Override :py:data:`~rtree.index.Index.dumps` to use the highest pickle protocol .. topic:: Update from January 2024 - Pickling is currently broken and awaiting a pull requst to fix it. + Pickling is currently broken and awaiting a pull request to fix it. For more information, see the `pull request on GitHub`_. .. _pull request on GitHub: https://github.com/Toblerity/rtree/pull/197 diff --git a/rtree/__init__.py b/rtree/__init__.py index c7bd14b4..9966fc82 100644 --- a/rtree/__init__.py +++ b/rtree/__init__.py @@ -7,6 +7,6 @@ from __future__ import annotations -__version__ = "1.2.0" +__version__ = "1.3.0" from .index import Index, Rtree # noqa