From a63aa3b8e24cf95f3fab2613f9a3015b164ef62c Mon Sep 17 00:00:00 2001 From: Jorrit Rouwe Date: Sun, 3 Nov 2024 21:52:57 +0100 Subject: [PATCH] Bump to v5.2.0 --- Docs/APIChanges.md | 2 +- Docs/ReleaseNotes.md | 2 +- Jolt/Core/Core.h | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Docs/APIChanges.md b/Docs/APIChanges.md index 9a1224b8b..df64f8078 100644 --- a/Docs/APIChanges.md +++ b/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.1.0 and latest +## Changes between v5.1.0 and v5.2.0 * 20240927 - PhysicsStepListener::OnStep now takes a single PhysicsStepListenerContext parameter. The old parameters 'delta time' and 'physics system' are part of this context. The VehicleConstraint step callbacks use the same context. (8153cd854ce0547b2def425118e1e2f68a9e365c) * 20240922 - SoftBodyManifold now has a separate interface to return collisions with sensors (GetNumSensorContacts/GetSensorContactBodyID), this means they can no longer be retrieved through GetContactBodyID. (4058e6a72edc6e11630b3ec6b67d97e2b9324473) diff --git a/Docs/ReleaseNotes.md b/Docs/ReleaseNotes.md index 0219c5259..0fa2dceb3 100644 --- a/Docs/ReleaseNotes.md +++ b/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.2.0 ### New functionality diff --git a/Jolt/Core/Core.h b/Jolt/Core/Core.h index 8396ff3e7..bd1bd983e 100644 --- a/Jolt/Core/Core.h +++ b/Jolt/Core/Core.h @@ -6,8 +6,8 @@ // Jolt library version #define JPH_VERSION_MAJOR 5 -#define JPH_VERSION_MINOR 1 -#define JPH_VERSION_PATCH 1 +#define JPH_VERSION_MINOR 2 +#define JPH_VERSION_PATCH 0 // Determine which features the library was compiled with #ifdef JPH_DOUBLE_PRECISION