From 339bfe3bae899a26beb0164a0f824a1f0498e28f Mon Sep 17 00:00:00 2001 From: Stephen Gold Date: Sat, 25 Sep 2021 16:03:26 -0700 Subject: [PATCH] update release log, build scripts, and init message for version 12.1.1 --- appveyor.yml | 10 +++++----- build.gradle | 2 +- release-notes.md | 10 +++++----- src/main/native/glue/jmeClasses.h | 2 +- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 0f242a4e..fb874d3d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,7 +1,7 @@ --- # configure deployment by AppVeyor.com -version: 12.1.0 +version: 12.1.1 image: Visual Studio 2019 @@ -11,13 +11,13 @@ build_script: - cmd: gradlew.bat build --console=plain --no-daemon artifacts: - - path: dist/Libbulletjme-12.1.0.jar + - path: dist/Libbulletjme-12.1.1.jar name: classJar - - path: dist/Libbulletjme-12.1.0-javadoc.jar + - path: dist/Libbulletjme-12.1.1-javadoc.jar name: javadocJar - - path: dist/Libbulletjme-12.1.0-sources.jar + - path: dist/Libbulletjme-12.1.1-sources.jar name: sourcesJar - - path: dist/Libbulletjme-12.1.0.pom + - path: dist/Libbulletjme-12.1.1.pom name: pom - path: dist/Windows32DebugDp_bulletjme.dll name: dll32DD diff --git a/build.gradle b/build.gradle index 7f24db7e..7d172f79 100644 --- a/build.gradle +++ b/build.gradle @@ -10,7 +10,7 @@ plugins { ext { group = 'com.github.stephengold' artifact = 'Libbulletjme' - version = '12.1.0' + version = '12.1.1' baseName = "${artifact}-${version}" websiteUrl = 'https://github.com/stephengold/Libbulletjme' } diff --git a/release-notes.md b/release-notes.md index d16a1363..050047ee 100644 --- a/release-notes.md +++ b/release-notes.md @@ -1,6 +1,6 @@ # Release log for the Libbulletjme project -## Version 12.1.0 released on 25 September 2021 +## Version 12.1.1 released on 25 September 2021 + Added double-precision getters for the locations and orientations of collision objects. @@ -22,18 +22,18 @@ + In Mt builds, allocated 2 worker threads instead of the maximum number. + Added profiling points to the `jmePhysicsSpace` class. -## Version 11.2.1 released on 14 August 2021. +## Version 11.2.1 released on 14 August 2021 Optimized Release-type builds that use Microsoft's Visual C++ compiler. -## Version 11.2.0 released on 13 August 2021. +## Version 11.2.0 released on 13 August 2021 + Bugfix: pure virtual call by btGImpactMeshShape destructor (Minie issue #17) + Bugfix: Quickprof reset at the start of every timestep + Bugfix: BT_PROFILE() macro never invokes CProfileManager + Added access to Quickprof profiling. -## Version 11.1.0 released on 9 August 2021. +## Version 11.1.0 released on 9 August 2021 + Bugfix: missing the cppCompiler arguments to activate OpenMP extensions + Added the copy constructor and `multLocal(x,y,z,w)` method @@ -43,7 +43,7 @@ Optimized Release-type builds that use Microsoft's Visual C++ compiler. + Deprecated the `Vector3f.getX()` and `PhysicsRigidBody.getAngularFactor()` methods. -## Version 11.0.0 released on 8 August 2021. +## Version 11.0.0 released on 8 August 2021 + Bugfix: contact tests report events with positive separation distance + Tweaked the behavior of `PhysicsRigidBody.setKinematic()`. diff --git a/src/main/native/glue/jmeClasses.h b/src/main/native/glue/jmeClasses.h index d6eac61b..85ce9d7b 100644 --- a/src/main/native/glue/jmeClasses.h +++ b/src/main/native/glue/jmeClasses.h @@ -38,7 +38,7 @@ #include -#define LIBBULLETJME_VERSION "12.1.0" +#define LIBBULLETJME_VERSION "12.1.1" #ifdef _DEBUG #define NULL_CHK(pEnv, pointer, message, retval) \