Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.3.0 #320

Merged
merged 1 commit into from
Jul 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -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
=================

Expand Down
2 changes: 1 addition & 1 deletion CREDITS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ Adam Stewart
Mike Taves <[email protected]>

* cibuildwheel configuration
* general maintanance
* general maintenance
2 changes: 1 addition & 1 deletion docs/source/performance.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion rtree/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@

from __future__ import annotations

__version__ = "1.2.0"
__version__ = "1.3.0"

from .index import Index, Rtree # noqa
Loading