From e38a3acaaa9668aac6160a0f331796dbb4e8caa8 Mon Sep 17 00:00:00 2001 From: Sergey Yablokov Date: Sun, 3 Dec 2023 23:34:30 +0100 Subject: [PATCH] Bump version --- CHANGELOG.md | 14 +++++++++++++- Ray.cpp | 2 +- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 054879e08..c2f55f77a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ ### Added +### Fixed + +### Changed + +### Removed + + +## [0.3.0] - 2023-12-03 + +### Added + - Light tree for hierarchical NEE and direct intersections - PMJ sampling - Ray type visibility masks (diffuse, glossy etc.) @@ -127,6 +138,7 @@ -[Unreleased]: https://gitlab.com/sergcpp/Ray/-/compare/v0.2.0...master +[Unreleased]: https://gitlab.com/sergcpp/Ray/-/compare/v0.3.0...master +[0.3.0]: https://gitlab.com/sergcpp/Ray/-/releases/v0.3.0 [0.2.0]: https://gitlab.com/sergcpp/Ray/-/releases/v0.2.0 [0.1.0]: https://gitlab.com/sergcpp/Ray/-/releases/v0.1.0 diff --git a/Ray.cpp b/Ray.cpp index d620d4bb9..de7cdc4fe 100644 --- a/Ray.cpp +++ b/Ray.cpp @@ -150,7 +150,7 @@ bool Ray::MatchDeviceNames(const char *name, const char *pattern) { return std::regex_search(name, match_name) || strcmp(name, pattern) == 0; } -const char *Ray::Version() { return "v0.2.0-unknown-commit"; } +const char *Ray::Version() { return "v0.3.0-unknown-commit"; } // Workaround for a strange clang behavior template class std::vector>;