Skip to content

Commit

Permalink
update release log, build scripts, and init message for version 13.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Feb 27, 2022
1 parent 88c4103 commit f208989
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 10 deletions.
12 changes: 6 additions & 6 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
# configure deployment by AppVeyor.com

version: 12.8.0
version: 13.0.0

image: Visual Studio 2019

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

artifacts:
- path: dist/Libbulletjme-12.8.0.jar
- path: dist/Libbulletjme-13.0.0.jar
name: classJar
- path: dist/Libbulletjme-12.8.0-javadoc.jar
- path: dist/Libbulletjme-13.0.0-javadoc.jar
name: javadocJar
- path: dist/Libbulletjme-12.8.0-sources.jar
- path: dist/Libbulletjme-13.0.0-sources.jar
name: sourcesJar
- path: dist/Libbulletjme-12.8.0.pom
- path: dist/Libbulletjme-13.0.0.pom
name: pom
- path: dist/Libbulletjme-12.8.0.module
- path: dist/Libbulletjme-13.0.0.module
name: module
- path: dist/Windows32DebugDp_bulletjme.dll
name: dll32DD
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
ext {
group = 'com.github.stephengold'
artifact = 'Libbulletjme'
version = '12.8.0'
version = '13.0.0'
baseName = "${artifact}-${version}"
websiteUrl = 'https://github.com/stephengold/Libbulletjme'
}
Expand Down Expand Up @@ -175,8 +175,8 @@ model {
} else {
// non-CI build (neither -Pgithub= nor -Ptravis= specified)
buildable = !pName.startsWith('Linux_ARM')
//buildable = (pName == 'Linux64') // to skip all except Linux64
//buildable = (pName == 'Windows64') // to skip all except Windows64
//buildable = (pName == 'Linux64') // to build Linux64 only
//buildable = (pName == 'Windows64') // to build Windows64 only
}

Boolean isDp = (flavor == flavors.Dp || flavor == flavors.DpMt)
Expand Down
24 changes: 24 additions & 0 deletions release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Release log for the Libbulletjme project

## Version 13.0.0 released on 26 February 2022

+ Added the `ManifoldPoints` utility class, which provides getters and setters
for `btManifoldPoint` without the need to instantiate
a `PhysicsCollisionEvent`.
+ The `PhysicsCollisionEvent.setContactCalcArea3Points()` method was moved
to the `ManifoldPoints` class. (API change)
+ The 4 setters added to `PhysicsCollisionEvent` in v12.8.0
were deleted. (API change)
+ The `PhysicsSpace.onContactProcessed()` method (added in v12.8.0)
was deleted. (API change)
+ Defined the `ContactListener` interface for immediate processing
of rigid-body contacts.
Overriding this interface of `PhysicsSpace` is now the recommended way
to process rigid-body contacts.
+ Added a new `update()` method to `PhysicsSpace` to enable callbacks
to specific `ContactListener` methods.
+ Deprecated 5 `PhysicsSpace` methods associated with event queueing:
+ `addCollisionListener()`
+ `addOngoingCollisionListener()`
+ `distributeEvents()`
+ `removeCollisionListener()`
+ `removeOngoingCollisionListener()`

## Version 12.8.0 released on 25 February 2022

+ Bugfix: btAssert from `HingeJoint.setAngularOnly(true)` (Minie issue 20)
Expand Down
2 changes: 1 addition & 1 deletion src/main/native/glue/jmeClasses.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

#include <jni.h>

#define LIBBULLETJME_VERSION "12.8.0"
#define LIBBULLETJME_VERSION "13.0.0"

#ifdef _DEBUG
#define NULL_CHK(pEnv, pointer, message, retval) \
Expand Down

0 comments on commit f208989

Please sign in to comment.