Skip to content

Commit e38a3ac

Browse files
committed
Bump version
1 parent 0f8ac43 commit e38a3ac

2 files changed

Lines changed: 14 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@
44

55
### Added
66

7+
### Fixed
8+
9+
### Changed
10+
11+
### Removed
12+
13+
14+
## [0.3.0] - 2023-12-03
15+
16+
### Added
17+
718
- Light tree for hierarchical NEE and direct intersections
819
- PMJ sampling
920
- Ray type visibility masks (diffuse, glossy etc.)
@@ -127,6 +138,7 @@
127138

128139

129140

130-
[Unreleased]: https://gitlab.com/sergcpp/Ray/-/compare/v0.2.0...master
141+
[Unreleased]: https://gitlab.com/sergcpp/Ray/-/compare/v0.3.0...master
142+
[0.3.0]: https://gitlab.com/sergcpp/Ray/-/releases/v0.3.0
131143
[0.2.0]: https://gitlab.com/sergcpp/Ray/-/releases/v0.2.0
132144
[0.1.0]: https://gitlab.com/sergcpp/Ray/-/releases/v0.1.0

Ray.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ bool Ray::MatchDeviceNames(const char *name, const char *pattern) {
150150
return std::regex_search(name, match_name) || strcmp(name, pattern) == 0;
151151
}
152152

153-
const char *Ray::Version() { return "v0.2.0-unknown-commit"; }
153+
const char *Ray::Version() { return "v0.3.0-unknown-commit"; }
154154

155155
// Workaround for a strange clang behavior
156156
template class std::vector<float, Ray::aligned_allocator<float, 64>>;

0 commit comments

Comments
 (0)