diff --git a/CHANGELOG.md b/CHANGELOG.md index d81aa4b27c2..7b06fc4d8e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -44,6 +44,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Changed registration of `Capsule`, `Cone`, `Cylinder`, `Sphere`, `Torus` to `ShapeObject` in `compas_blender.scene`. * Updated `compas.geometry.vector.__mul__` to allow element-wise multiplication with another vector. * Updated `compas.geometry.vector.__truediv__` to allow element-wise division with another vector. +* Fixed bug in registration `shapely` boolean plugins. ### Removed diff --git a/src/compas/__init__.py b/src/compas/__init__.py index f42a41991ed..3a11ce36201 100644 --- a/src/compas/__init__.py +++ b/src/compas/__init__.py @@ -131,7 +131,7 @@ ] __all_plugins__ = [ - "compas.geometry.booleans.booleans_shapely", + "compas.geometry.booleans_shapely", "compas.scene", ]