From f1cae86f7e0c2cb48fca2f7e4579502e8cc29a3f Mon Sep 17 00:00:00 2001 From: Joris Van den Bossche Date: Sat, 22 Oct 2022 11:38:27 +0200 Subject: [PATCH] DOC: add note about Shapely 2.0 support to the changelog (#2608) Co-authored-by: Brendan Ward Co-authored-by: Matt Richards <45483497+m-richards@users.noreply.github.com> --- CHANGELOG.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a32a473..5bbe201 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,21 @@ Changelog Development version ------------------- +Version 0.12 (October xx, 2022) +------------------------------- + +The highlight of this release is the support for Shapely 2.0. This makes it possible to +test Shapely 2.0 (currently 2.0b1) alongside GeoPandas + +Note that if you also have PyGEOS installed, you need to set an environment variable +(`USE_PYGEOS=0`) before importing geopandas to actually test Shapely 2.0 features instead of PyGEOS. See +https://geopandas.org/en/latest/getting_started/install.html#using-the-optional-pygeos-dependency +for more details. + New features and improvements: - Added ``normalize()`` method from shapely to GeoSeries/GeoDataframe (#2537) -- Add where filter to ``read_file`` (#2552) +- Add ``where`` filter to ``read_file`` (#2552) Deprecations and compatibility notes: - Accessing the `crs` of a `GeoDataFrame` without active geometry column was deprecated and this now raises an AttributeError (#2578). @@ -16,7 +27,6 @@ Bug fixes: - Accessing `gdf.geometry` where the active geometry column is missing, and a column named `"geometry"` is present will now raise an `AttributeError`, rather than returning `gdf["geometry"]` (#2575) -Notes on (optional) dependencies: Version 0.11.1 (July 24, 2022) ------------------------------