Skip to content

Commit c30589f

Browse files
committed
Fix changelog
Explicitly require coal >= 3.0.0 (redundant)
1 parent 6ce1a52 commit c30589f

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Added
1111

12-
- multibody/`Visualizer` : add frame visualization
12+
- multibody/Visualizer : add frame visualization
1313
- core/DebugScene : clean up entities with `DebugMeshComponent`
14-
- core/`DebugScene` : add move ctor, explicitly delete move assignment op
14+
- core/DebugScene : add move ctor, explicitly delete move assignment op
1515

1616
### Changed
1717

1818
- core/DebugScene : pass `Float3` scale to `addTriad()`
1919
- multibody : deprecate header `<candlewick/multibody/Components.h>`
20+
- rename macro `CDW_ASSERT` to `CANDLEWICK_ASSERT` (for consistency)
21+
- multibody/Visualizer : make more mouse buttons configurable
22+
- docs : fix linking to pinocchio docs
2023

2124
### Removed
2225

2326
- remove default plane from Visualizer class
2427

2528
**Python**
26-
- Removed `multibody` submodule. All symbols included in the main module.
29+
- Removed `multibody` submodule. All symbols included in the main module. (**BREAKING CHANGE**)
2730
- Fix stubs being generated for non-extension module classes/functions
2831

2932
## [0.3.1] - 2025-06-05
@@ -33,10 +36,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3336
- utils/VideoRecorder.cpp : fix `m_frameCounter` not being initialized
3437
- bindings/python : fix recorder context helper
3538

36-
### Changed
37-
38-
- rename macro `CDW_ASSERT` to `CANDLEWICK_ASSERT` (for consistency)
39-
4039
## [0.3.0] - 2025-06-05
4140

4241
### Added

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ endif()
8585
ADD_PROJECT_DEPENDENCY(SDL3 3.2.4 REQUIRED)
8686
ADD_PROJECT_DEPENDENCY(assimp REQUIRED)
8787
ADD_PROJECT_DEPENDENCY(Eigen3 REQUIRED)
88-
ADD_PROJECT_DEPENDENCY(coal REQUIRED)
88+
ADD_PROJECT_DEPENDENCY(coal REQUIRED PKG_CONFIG_REQUIRES "coal >= 3.0.0")
8989
if(BUILD_PINOCCHIO_VISUALIZER)
9090
ADD_PROJECT_DEPENDENCY(
9191
pinocchio

0 commit comments

Comments
 (0)