Skip to content

Commit 095de3a

Browse files
authored
Add CHANGELOG, bump API version to 0.11.1 (#61)
1 parent 54bacb2 commit 095de3a

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Change Log
2+
3+
## [0.11.1]
4+
5+
### Added
6+
7+
### Changed
8+
9+
### Fixed
10+
- CUDA Runtime is now linked statically.
11+
12+
## [0.11.0]
13+
14+
The initial release.

include/rgl/api/core.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
#define RGL_VERSION_MAJOR 0
3131
#define RGL_VERSION_MINOR 11
32-
#define RGL_VERSION_PATCH 0
32+
#define RGL_VERSION_PATCH 1
3333

3434
/**
3535
* Three consecutive 32-bit floats.

src/api/api.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ extern "C" {
137137
RGL_API rgl_status_t
138138
rgl_get_version_info(int32_t* out_major, int32_t* out_minor, int32_t* out_patch)
139139
{
140-
// Short API version history:
140+
// Short pre-changelog API version history:
141141
// This is a brief shortcut for devs!
142142
// 0.1: PoC via dlopen
143143
// 0.2: added E2E PCL formats (12, 24, 48), ringIds, postRaycastTransform

0 commit comments

Comments
 (0)