File tree 4 files changed +27
-2
lines changed 4 files changed +27
-2
lines changed Original file line number Diff line number Diff line change 1
1
OpenVDB Version History
2
2
=======================
3
3
4
+ Version 7.2.1 - December 23, 2020
5
+
6
+ Bug fixes:
7
+ - Fixed a determinism bug in NodeManager when using non-thread-safe
8
+ functor members.
9
+
10
+ Build:
11
+ - Added a missing header include to resolve an undefined size_t build error
12
+ on GCC10.
13
+
4
14
Version 7.2.0 - December 9, 2020
5
15
6
16
New features:
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ set(DOXY_FILES
51
51
doc /python.txt)
52
52
53
53
set (DOXYGEN_PROJECT_NAME "OpenVDB" )
54
- set (DOXYGEN_PROJECT_NUMBER "7.2.0 " )
54
+ set (DOXYGEN_PROJECT_NUMBER "7.2.1 " )
55
55
set (DOXYGEN_PROJECT_BRIEF "" )
56
56
set (DOXYGEN_FILE_PATTERNS "*.h" ) # headers only
57
57
set (DOXYGEN_IMAGE_PATH "doc/img" )
Original file line number Diff line number Diff line change 2
2
3
3
@page changes Release Notes
4
4
5
+ @htmlonly <a name="v7_2_1_changes"></a>@endhtmlonly
6
+ @par
7
+ <B>Version 7.2.1</B> - <I>December 23, 2020</I>
8
+
9
+ @par
10
+ Bug fixes:
11
+ - Fixed a determinism bug in @vdblink::tree::NodeManager NodeManager@endlink
12
+ when using non-thread-safe functor members.
13
+
14
+ @par
15
+ Build:
16
+ - Added a missing header include to resolve an undefined size_t build error
17
+ on GCC10.
18
+
19
+
5
20
@htmlonly <a name="v7_2_0_changes"></a>@endhtmlonly
6
21
@par
7
22
<B>Version 7.2.0</B> - <I>December 9, 2020</I>
Original file line number Diff line number Diff line change 50
50
// Library major, minor and patch version numbers
51
51
#define OPENVDB_LIBRARY_MAJOR_VERSION_NUMBER 7
52
52
#define OPENVDB_LIBRARY_MINOR_VERSION_NUMBER 2
53
- #define OPENVDB_LIBRARY_PATCH_VERSION_NUMBER 0
53
+ #define OPENVDB_LIBRARY_PATCH_VERSION_NUMBER 1
54
54
55
55
// If OPENVDB_ABI_VERSION_NUMBER is already defined (e.g., via -DOPENVDB_ABI_VERSION_NUMBER=N)
56
56
// use that ABI version. Otherwise, use this library version's default ABI.
You can’t perform that action at this time.
0 commit comments