Skip to content

Commit 210cb01

Browse files
committed
bump version to 0.7.6 and update release-notes.md and README.md
1 parent e90a83c commit 210cb01

4 files changed

Lines changed: 22 additions & 5 deletions

File tree

MinieLibrary/release-notes.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,25 @@
11
# release notes for the Minie library and related examples
22

3+
## Version 0.7.6 released on TBD
4+
5+
+ Fixed a bug where `attachmentMass()` could return an outdated value.
6+
+ Improved the performance of volume calculations for hull and multi-sphere
7+
shapes.
8+
+ Various API changes in `RagUtils`.
9+
+ Added a `MultiSphere` constructor for a 2-sphere shape, based
10+
on a `RectangularSolid`.
11+
+ Added `boundingBox()` methods for collision shapes and collision objects.
12+
+ Added `countRigidBodies()` and `getPcoLists()` methods to the
13+
`PhysicsSpace` class.
14+
+ Added a `density()` method to the `PhysicsLink` class.
15+
+ Added a `HullCollisionShape` constructor based on a `FloatBuffer`.
16+
+ Added a `TwoSphere` heuristic for generating `PhysicsLink` shapes.
17+
+ Added a `VectorSet` abstract class with 2 implementations.
18+
+ Updated the native libraries to version 1.0.40 of `Libbulletjme`.
19+
320
## Version 0.7.5 released on 19 March 2019
421

5-
+ Added a `DumpFlags` enum and used it to simplify the API
22+
+ Added a `DumpFlags` enum and used it to simplify the API
623
of `PhysicsDumper`. (API change)
724
+ Added a `DumpFlag` to disable dumping collision objects in physics spaces.
825
+ Added a `getSpatial()` method to the `VehicleControl` class.

MinieLibrary/src/main/java/jme3utilities/minie/MinieVersion.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,6 @@ private MinieVersion() {
5959
* @return branch and revision (not null, not empty)
6060
*/
6161
public static String versionShort() {
62-
return "master 0.7.5+1";
62+
return "master 0.7.6";
6363
}
6464
}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,15 +271,15 @@ repository location:
271271
jcenter()
272272
}
273273
dependencies {
274-
compile 'jme3utilities:Minie:0.7.5'
274+
compile 'jme3utilities:Minie:0.7.6'
275275
}
276276

277277
#### For Ant projects
278278

279279
For projects built using Ant, download the 2 non-standard
280280
libraries from GitHub:
281281

282-
+ https://github.com/stephengold/Minie/releases/tag/0.7.5
282+
+ https://github.com/stephengold/Minie/releases/tag/0.7.6
283283
+ https://github.com/stephengold/jme3-utilities/releases/tag/heart-2.23.0
284284

285285
You'll want both class JARs

common.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ gradle.projectsEvaluated {
3232
ext {
3333
// current versions of the libraries
3434
jmonkeyengineVersion = '3.2.3-stable'
35-
minieVersion = '0.7.5'
35+
minieVersion = '0.7.6'
3636
}
3737

3838
repositories {

0 commit comments

Comments
 (0)