Skip to content

Commit

Permalink
bump version to 0.7.7 and update release-notes.md and README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Mar 29, 2019
1 parent f4e451d commit 9c76c47
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 9 deletions.
12 changes: 11 additions & 1 deletion MinieLibrary/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# release notes for the Minie library and related examples

## Version 0.7.7 released on TBD

+ Moved `RagUtils.vertexLocations()` and `VectorSet` to
the `jme3-utilities-heart` library.
+ Lots of work on apps:
+ Added `WatchDemo` app.
+ Disabled contact response in `TuneDac`.
+ Moved IK controllers to their own package.
+ Used `getInverseInertiaWorld()` in `TrackController`.

## Version 0.7.6 released on 24 March 2019

+ Fixed a bug where `attachmentMass()` could return an outdated value.
Expand All @@ -9,7 +19,7 @@
+ Added a `MultiSphere` constructor for a 2-sphere shape, based
on a `RectangularSolid`.
+ Added `boundingBox()` methods for collision shapes and collision objects.
+ Added `countRigidBodies()` and `getPcoLists()` methods to the
+ Added `countRigidBodies()` and `getPcoList()` methods to the
`PhysicsSpace` class.
+ Added a `density()` method to the `PhysicsLink` class.
+ Added a `HullCollisionShape` constructor based on a `FloatBuffer`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ private MinieVersion() {
* @return branch and revision (not null, not empty)
*/
public static String versionShort() {
return "master 0.7.6+1";
return "master 0.7.7";
}
}
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -271,16 +271,16 @@ repository location:
jcenter()
}
dependencies {
compile 'jme3utilities:Minie:0.7.6'
compile 'jme3utilities:Minie:0.7.7'
}

#### For Ant projects

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

+ https://github.com/stephengold/Minie/releases/tag/0.7.6
+ https://github.com/stephengold/jme3-utilities/releases/tag/heart-2.23.0
+ https://github.com/stephengold/Minie/releases/tag/0.7.7
+ https://github.com/stephengold/jme3-utilities/releases/tag/heart-2.24.0

You'll want both class JARs
and probably the `-sources` and `-javadoc` JARs as well.
Expand All @@ -296,15 +296,15 @@ Open the project's properties in the IDE (JME 3.2 SDK or NetBeans 8.2):
+ Navigate to the "jme3-utilities" project folder.
+ Open the "heart" sub-project folder.
+ Navigate to the "build/libs" folder.
+ Select the "jme3-utilities-heart-2.23.0.jar" file.
+ Select the "jme3-utilities-heart-2.24.0.jar" file.
+ Click on the "Open" button.
6. (optional) Add JARs for javadoc and sources:
+ Click on the "Edit" button.
+ Click on the "Browse..." button to the right of "Javadoc:"
+ Select the "jme3-utilities-heart-2.23.0-javadoc.jar" file.
+ Select the "jme3-utilities-heart-2.24.0-javadoc.jar" file.
+ Click on the "Open" button.
+ Click on the "Browse..." button to the right of "Sources:"
+ Select the "jme3-utilities-heart-2.23.0-sources.jar" file.
+ Select the "jme3-utilities-heart-2.24.0-sources.jar" file.
+ Click on the "Open" button again.
+ Click on the "OK" button to close the "Edit Jar Reference" dialog.
7. Similarly, add the `Minie` JAR(s).
Expand Down
2 changes: 1 addition & 1 deletion common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ gradle.projectsEvaluated {
ext {
// current versions of the libraries
jmonkeyengineVersion = '3.2.3-stable'
minieVersion = '0.7.6'
minieVersion = '0.7.7'
}

repositories {
Expand Down

0 comments on commit 9c76c47

Please sign in to comment.