From 4256762de19974e8e5c833a26d73fa4eb75832f1 Mon Sep 17 00:00:00 2001 From: jbikker Date: Fri, 3 Jan 2025 12:24:41 +0100 Subject: [PATCH] Version bump. --- README.md | 2 +- tiny_bvh.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 32aabc7..566ca6b 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ The **performance measurement tool** can be compiled with: ````g++ -std=c++20 -mavx -Ofast tiny_bvh_speedtest.cpp -o tiny_bvh_speedtest```` -# Version 1.1.8 +# Version 1.1.9 Version 1.1.0 introduced a change to the API. The single BVH class with multiple layouts has been replaced with a BVH class per layout. You can simply instantiate the desired layout; conversion (and data ownership) is then handled properly by the library. Examples: diff --git a/tiny_bvh.h b/tiny_bvh.h index 3f93057..b74f248 100644 --- a/tiny_bvh.h +++ b/tiny_bvh.h @@ -117,7 +117,7 @@ THE SOFTWARE. // library version #define TINY_BVH_VERSION_MAJOR 1 #define TINY_BVH_VERSION_MINOR 1 -#define TINY_BVH_VERSION_SUB 8 +#define TINY_BVH_VERSION_SUB 9 // ============================================================================ //