Skip to content
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
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
Changelog
=========

Version 0.5.0 (upcoming)
------------------------

Deprecations and compatibility notes:

- The deprecated `geom_almost_equals` method has been removed. Use `geom_equals_exact` instead.


Version 0.4.3 (January, 2025)
----------------------------------
-----------------------------

Packaging:

Expand Down
1 change: 0 additions & 1 deletion dask_geopandas/expr.py
Original file line number Diff line number Diff line change
Expand Up @@ -1023,7 +1023,6 @@ def func(data):
for name in [
"contains",
"geom_equals",
"geom_almost_equals",
"crosses",
"disjoint",
"intersects",
Expand Down
1 change: 0 additions & 1 deletion dask_geopandas/tests/test_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,6 @@ def test_project(geoseries_lines):
[
"contains",
"geom_equals",
"geom_almost_equals",
"crosses",
"disjoint",
"intersects",
Expand Down
1 change: 0 additions & 1 deletion doc/source/docs/reference/geoseries.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ Binary Predicates
GeoSeries.crosses
GeoSeries.disjoint
GeoSeries.geom_equals
GeoSeries.geom_almost_equals
GeoSeries.geom_equals_exact
GeoSeries.intersects
GeoSeries.overlaps
Expand Down
Loading