Browse Source

Bump version to v5.4.0

Jorrit Rouwe 2 weeks ago
parent
commit
036ea7b1d7
4 changed files with 5 additions and 5 deletions
  1. 1 1
      Build/CMakeLists.txt
  2. 1 1
      Docs/APIChanges.md
  3. 1 1
      Docs/ReleaseNotes.md
  4. 2 2
      Jolt/Core/Core.h

+ 1 - 1
Build/CMakeLists.txt

@@ -1,6 +1,6 @@
 cmake_minimum_required(VERSION 3.20 FATAL_ERROR)
 cmake_minimum_required(VERSION 3.20 FATAL_ERROR)
 
 
-project(JoltPhysics VERSION 5.3.1 LANGUAGES CXX)
+project(JoltPhysics VERSION 5.4.0 LANGUAGES CXX)
 
 
 # When turning this option on, the library will be compiled using assertions. By default asserts are enabled in Debug build.
 # When turning this option on, the library will be compiled using assertions. By default asserts are enabled in Debug build.
 option(USE_ASSERTS "Enable asserts" OFF)
 option(USE_ASSERTS "Enable asserts" OFF)

+ 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 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.3.0 and latest
+## Changes between v5.3.0 and v5.4.0
 
 
 * 20240529 - *SBS* - Added `SoftBodyCreationSettings::mFacesDoubleSided` which treats the faces of the soft body as double sided. This changes the binary serialization format. (3ad037b9262ba81bf7ceda10687f2a07da38f091)
 * 20240529 - *SBS* - Added `SoftBodyCreationSettings::mFacesDoubleSided` which treats the faces of the soft body as double sided. This changes the binary serialization format. (3ad037b9262ba81bf7ceda10687f2a07da38f091)
 * 20240529 - *SBS* - WheelSettingsTV and WheelSettingsWV were not serializing their base class members. This changes the binary serialization format. (cfefdc669291bd25dd168af95fb32515cc05a78b)
 * 20240529 - *SBS* - WheelSettingsTV and WheelSettingsWV were not serializing their base class members. This changes the binary serialization format. (cfefdc669291bd25dd168af95fb32515cc05a78b)

+ 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).
 For breaking API changes see [this document](https://github.com/jrouwe/JoltPhysics/blob/master/Docs/APIChanges.md).
 
 
-## Unreleased Changes
+## v5.4.0
 
 
 ### New functionality
 ### New functionality
 
 

+ 2 - 2
Jolt/Core/Core.h

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