Skip to content

Commit

Permalink
debug library: bump version to 0.7.1 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jul 13, 2017
1 parent be167b0 commit 34a1c7e
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
4 changes: 2 additions & 2 deletions common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ gradle.projectsEvaluated {
}

ext {
// version numbers for libraries
// which versions of the libraries
jcommanderVersion = '1.72'
jme3utilitiesdebugVersion = '0.7.0'
jme3utilitiesdebugVersion = '0.7.1'
jme3utilitiesheartVersion = '0.9.10'
jme3utilitiesniftyVersion = '0.6.7'
jme3utilitiesuiVersion = '0.5.3'
Expand Down
4 changes: 2 additions & 2 deletions debug/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ sourcesJar { baseName "${project.ext.baseName}" }
dependencies {
compile "org.jmonkeyengine:jme3-core:$jmonkeyengineVersion"

//compile "jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion"
compile project(':heart')
compile "jme3utilities:jme3-utilities-heart:$jme3utilitiesheartVersion"
//compile project(':heart')
}

task pom {
Expand Down
4 changes: 4 additions & 0 deletions debug/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# release notes for the jme3-utilities-debug library and related tests

## Version 0.7.1 released on TBD

+ When dumping cameras, split description across two lines

## Version 0.7.0 released on 9 July 2017

+ Renamed Printer to Dumper and made major changes to its API
Expand Down
2 changes: 1 addition & 1 deletion debug/src/main/java/jme3utilities/debug/DebugVersion.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,6 @@ private DebugVersion() {
* @return branch and revision (not null, not empty)
*/
public static String getVersionShort() {
return "master 0.7.0+1";
return "master 0.7.1";
}
}
2 changes: 1 addition & 1 deletion heart/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# release notes for the jme3-utilities-heart library and related tests

## Version 0.9.10 released on TBD
## Version 0.9.10 released on 13 July 2017

+ Renamed Rectangle to RectangleMesh to avoid confusion
+ Removed Misc.isIdentity() for being redundant with MyMath.isIdentity()
Expand Down
3 changes: 2 additions & 1 deletion heart/src/main/java/jme3utilities/Misc.java
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ public static String getUserPath(String fileName) {
* @return project name, library name, branch, and revision
*/
public static String getVersion() {
return "jme3-utilities jme3-utilities-heart master $Rev: 0.9.10 $";
return "jme3-utilities jme3-utilities-heart master $Rev: 0.9.10+1 $";
}

/**
Expand Down Expand Up @@ -207,6 +207,7 @@ public static boolean hasUV(Mesh mesh) {
IntMap<VertexBuffer> buffers = mesh.getBuffers();
int key = Type.TexCoord.ordinal();
boolean result = buffers.containsKey(key);

return result;
}

Expand Down

0 comments on commit 34a1c7e

Please sign in to comment.