Skip to content

Commit

Permalink
Bump to v5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jrouwe committed Aug 11, 2024
1 parent c45bfac commit cede24d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Docs/APIChanges.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion Docs/ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions Jolt/Core/Core.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cede24d

Please sign in to comment.