From 61699fc08d081528f467a7f19cfbdb01927abded Mon Sep 17 00:00:00 2001 From: tomvanmele Date: Tue, 28 May 2024 12:55:01 +0200 Subject: [PATCH 1/2] use correct path --- src/compas/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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", ] From 22c9aaabae63448d289bb531be5199cd2426dbb3 Mon Sep 17 00:00:00 2001 From: tomvanmele Date: Mon, 10 Jun 2024 16:02:35 +0200 Subject: [PATCH 2/2] log --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) 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