Skip to content

Commit ec8f6cd

Browse files
Release 2.0.7 (#2211)
Co-authored-by: Joris Van den Bossche <[email protected]>
1 parent c5431c0 commit ec8f6cd

File tree

5 files changed

+31
-5
lines changed

5 files changed

+31
-5
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
python -m build --sdist
3838
twine check --strict dist/*
3939
40-
- uses: actions/upload-artifact@v3
40+
- uses: actions/upload-artifact@v4
4141
with:
4242
path: ./dist/*.tar.gz
4343
retention-days: 30
@@ -141,7 +141,7 @@ jobs:
141141
CIBW_BUILD_VERBOSITY: 1
142142

143143
- name: Upload artifacts
144-
uses: actions/upload-artifact@v3
144+
uses: actions/upload-artifact@v4
145145
with:
146146
path: ./wheelhouse/*.whl
147147
retention-days: 5

CHANGES.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
Changes
22
=======
33

4+
2.0.7 (2025-01-30)
5+
------------------
6+
7+
Bug fixes:
8+
9+
- Fix compilation error on certain Linux platforms, such as Alpine (#1945).
10+
- Fixes crash when reading nonlinear geometry types (CircularString,
11+
CompoundCurve, MultiCurve, CurvePolygon, MultiSurface) from WKB/WKT with
12+
GEOS >= 3.13; these types are not yet supported in Shapely and now raise a
13+
``NotImplementedError`` (#2160)
14+
- Fix the ``project`` method to return a Python float (#2093).
15+
416
2.0.6 (2024-08-19)
517
------------------
618

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ cff-version: 1.2.0
22
message: "Please cite this software using these metadata."
33
type: software
44
title: Shapely
5-
version: "2.0.6"
6-
date-released: "2024-08-19"
5+
version: "2.0.7"
6+
date-released: "2025-01-30"
77
doi: 10.5281/zenodo.5597138
88
abstract: "Manipulation and analysis of geometric objects in the Cartesian plane."
99
repository-artifact: https://pypi.org/project/Shapely

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# -- Project information -----------------------------------------------------
1313

1414
project = 'Shapely'
15-
copyright = '2011-2024, Sean Gillies and Shapely contributors'
15+
copyright = '2011-2025, Sean Gillies and Shapely contributors'
1616

1717
# The full version, including alpha/beta/rc tags.
1818
import shapely

docs/release/2.x.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
Version 2.x
22
===========
33

4+
.. _version-2-0-7:
5+
6+
Version 2.0.7 (2025-01-30)
7+
--------------------------
8+
9+
Bug fixes:
10+
11+
- Fix compilation error on certain Linux platforms, such as Alpine (#1945).
12+
- Fixes crash when reading nonlinear geometry types (CircularString,
13+
CompoundCurve, MultiCurve, CurvePolygon, MultiSurface) from WKB/WKT with
14+
GEOS >= 3.13; these types are not yet supported in Shapely and now raise a
15+
``NotImplementedError`` (#2160)
16+
- Fix the ``project`` method to return a Python float (#2093).
17+
418
.. _version-2-0-6:
519

620
Version 2.0.6 (2024-08-19)

0 commit comments

Comments
 (0)