Skip to content

Commit 7001357

Browse files
committed
update the release log, build scripts, and init message for v21.3.0
1 parent 5a51bbd commit 7001357

File tree

5 files changed

+17
-9
lines changed

5 files changed

+17
-9
lines changed

appveyor.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
# configure deployment by AppVeyor.com
33

4-
version: 21.2.1
4+
version: 21.3.0
55

66
image: Visual Studio 2022
77

@@ -11,15 +11,15 @@ build_script:
1111
- cmd: gradlew.bat build --console=plain --no-daemon
1212

1313
artifacts:
14-
- path: dist/Libbulletjme-21.2.1.jar
14+
- path: dist/Libbulletjme-21.3.0.jar
1515
name: classJar
16-
- path: dist/Libbulletjme-21.2.1-javadoc.jar
16+
- path: dist/Libbulletjme-21.3.0-javadoc.jar
1717
name: javadocJar
18-
- path: dist/Libbulletjme-21.2.1-sources.jar
18+
- path: dist/Libbulletjme-21.3.0-sources.jar
1919
name: sourcesJar
20-
- path: dist/Libbulletjme-21.2.1.pom
20+
- path: dist/Libbulletjme-21.3.0.pom
2121
name: pom
22-
- path: dist/Libbulletjme-21.2.1.module
22+
- path: dist/Libbulletjme-21.3.0.module
2323
name: module
2424
- path: dist/Windows32DebugDp_bulletjme.dll
2525
name: dll32DD

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ plugins {
1212
ext {
1313
group = 'com.github.stephengold'
1414
artifact = 'Libbulletjme'
15-
version = '21.2.1'
15+
version = '21.3.0'
1616
baseName = "${artifact}-${version}" // for artifacts
1717
websiteUrl = 'https://github.com/stephengold/Libbulletjme'
1818
}

release-notes.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Release log for the Libbulletjme project
22

3+
## Version 21.3.0 released on 31 August 2024
4+
5+
+ Bugfix: `copyPcoProperties()` doesn't copy user indices
6+
+ Bugfix: logic error in `CollisionShape.nativeMargin()`
7+
+ Publicized the `CollisionSpace.setLocalThreadPhysicsSpace()` method so
8+
per-thread physics spaces can nulled and garbage collected.
9+
+ Added public method `Quaternion.isValidQuaternion()`.
10+
311
## Version 21.2.1 released on 9 May 2024
412

513
+ Changed the default setting for collision-shape contact filtering

src/main/java/com/jme3/bullet/util/NativeLibrary.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ final public class NativeLibrary {
5252
/**
5353
* expected version string of the native library
5454
*/
55-
final public static String expectedVersion = "21.2.1";
55+
final public static String expectedVersion = "21.3.0";
5656
// *************************************************************************
5757
// constructors
5858

src/main/native/glue/jmeClasses.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
*/
3939
#include <jni.h>
4040

41-
#define LIBBULLETJME_VERSION "21.2.1"
41+
#define LIBBULLETJME_VERSION "21.3.0"
4242

4343
#define EXCEPTION_CHK(pEnv, retval) \
4444
if (pEnv->ExceptionCheck()) { \

0 commit comments

Comments
 (0)