Skip to content

Commit 0d950fe

Browse files
committed
Release 1.2.0
1 parent 703f15a commit 0d950fe

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

Diff for: CHANGES.rst

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
1.2.0: 2024-01-19
2+
=================
3+
4+
- Fix test failure with built library (:PR:`291` by :user:`sebastic`)
5+
- Include spatialindex headers and add :py:meth:`~rtree.finder.get_include` (:PR:`292` by :user:`JDBetteridge`)
6+
17
1.1.0: 2023-10-17
28
=================
39

Diff for: pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ authors = [
99
]
1010
maintainers = [
1111
{name = "Howard Butler", email = "[email protected]"},
12+
{name = "Mike Taves", email = "[email protected]"},
1213
]
1314
description = "R-Tree spatial index for Python GIS"
1415
readme = "README.md"

Diff for: 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.1.0"
9+
__version__ = "1.2.0"
1010

1111
from .index import Index, Rtree # noqa

0 commit comments

Comments
 (0)