diff --git a/CHANGES.txt b/CHANGES.txt index 5a33ab519..9e81f200b 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -37,6 +37,15 @@ Breaking changes in GEOS 3.12: - The WKT representation of a MULTIPOINT changed from for example "MULTIPOINT (0 0, 1 1)" to "MULTIPOINT ((0 0), (1 1))". (#1885) +2.0.3 (2024-02-16) +------------------ + +- Fix regression in the ``oriented_envelope`` ufunc to accept array-like input + in case of GEOS<3.12 (#1929). +- The binary wheels are not yet compatible with a future NumPy 2.0 release, + therefore a ``numpy<2`` upper pin was added to the requirements (#1972). +- Upgraded the GEOS version in the binary wheel distributions to 3.11.3. + 2.0.2 (2023-10-12) ------------------ diff --git a/docs/release/2.x.rst b/docs/release/2.x.rst index d666d902b..6056ff2f8 100644 --- a/docs/release/2.x.rst +++ b/docs/release/2.x.rst @@ -13,6 +13,22 @@ Improvements: to allow, skip, or error on nonfinite (NaN / Inf) coordinates. The default behaviour (allow) is backwards compatible (#1594). +.. _version-2-0-3: + +Version 2.0.3 (2024-02-16) +-------------------------- + +Bug fixes: + +- Fix regression in the ``oriented_envelope`` ufunc to accept array-like input + in case of GEOS<3.12 (#1929). + +Packaging related: + +- The binary wheels are not yet compatible with a future NumPy 2.0 release, + therefore a ``numpy<2`` upper pin was added to the requirements (#1972). +- Upgraded the GEOS version in the binary wheel distributions to 3.11.3. + .. _version-2-0-2: Version 2.0.2 (2023-10-12)