Browse Source

Bump to v5.1.0

Jorrit Rouwe 1 year ago
parent
commit
cede24d273
3 changed files with 4 additions and 4 deletions
  1. 1 1
      Docs/APIChanges.md
  2. 1 1
      Docs/ReleaseNotes.md
  3. 2 2
      Jolt/Core/Core.h

+ 1 - 1
Docs/APIChanges.md

@@ -4,7 +4,7 @@ This document lists all breaking API changes by date and by release tag. Note th
 
 Changes that make some state saved through SaveBinaryState from a prior version of the library unreadable by the new version is marked as *SBS*. See [Saving Shapes](https://jrouwe.github.io/JoltPhysics/#saving-shapes) for further information.
 
-## Changes between v5.0.0 and latest
+## Changes between v5.0.0 and v5.1.0
 
 * 20240811 - Added cmake options to toggle exception-handling and RTTI. CPP_EXCEPTIONS_ENABLED enables exceptions, CPP_RTTI_ENABLED enables RTTI. Before this change RTTI was off for MSVC and on for other compilers. Exceptions were on for all builds. You may need to set these options if your build relies on these C++ features. (760974d733ed24ea268a3bb9a8ef391b8ac503c7)
 * 20240803 - *SBS* - Removed the use of size_t when saving to binary. This means that the 32 and 64 bit versions of the lib can now read each others streams and that the 64 bit version has been adjusted to match the 32 bit version. (b54a0849e01f9f793fef3a219dfabdc7559f71ed)

+ 1 - 1
Docs/ReleaseNotes.md

@@ -2,7 +2,7 @@
 
 For breaking API changes see [this document](https://github.com/jrouwe/JoltPhysics/blob/master/Docs/APIChanges.md).
 
-## Unreleased changes
+## v5.1.0
 
 ### New functionality
 

+ 2 - 2
Jolt/Core/Core.h

@@ -6,8 +6,8 @@
 
 // Jolt library version
 #define JPH_VERSION_MAJOR 5
-#define JPH_VERSION_MINOR 0
-#define JPH_VERSION_PATCH 1
+#define JPH_VERSION_MINOR 1
+#define JPH_VERSION_PATCH 0
 
 // Determine which features the library was compiled with
 #ifdef JPH_DOUBLE_PRECISION