diff --git a/CHANGELOG.md b/CHANGELOG.md index 8bf879c7..17f51a3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,39 @@ # Change Log +## [0.13.0] 29 March 2023 + +### Added +- Reimplemented Gaussian Noise from RGL v10 + - Added API calls: + - `rgl_node_gaussian_noise_angular_ray` + - `rgl_node_gaussian_noise_angular_hitpoint` + - `rgl_node_gaussian_noise_distance` +- Added nodes for spatial and temporal point clouds merge + - Added API calls: + - `rgl_node_points_spatial_merge` + - `rgl_node_points_temporal_merge` +- Added node providing a user-defined point cloud to the RGL pipeline (for testing purposes) + - Added API call: + - `rgl_node_points_from_array` +- Added parameterized tests for: + - `rgl_node_points_from_array` + - `rgl_node_points_transform` +- Updated API surface tests +- Added support for multi-raytrace graphs + +### Changed +- Separated PCL nodes and created PCL extension +- Converted node `WritePCDFilePointsNode` into single API call + - Removed API call `rgl_node_points_write_pcd_file` + - Added API call `rgl_graph_write_pcd_file` + +### Fixed +- Fixed `--build-dir` flag in `setup.py` script + +### Removed +- Removed `rgl_graph_node_set_active` API call + + ## [0.12.0] 8 March 2023 ### Added diff --git a/include/rgl/api/core.h b/include/rgl/api/core.h index 6b058e6b..2f64f5c8 100644 --- a/include/rgl/api/core.h +++ b/include/rgl/api/core.h @@ -42,7 +42,7 @@ #define RGL_API NO_MANGLING RGL_VISIBLE #define RGL_VERSION_MAJOR 0 -#define RGL_VERSION_MINOR 12 +#define RGL_VERSION_MINOR 13 #define RGL_VERSION_PATCH 0 /**