Skip to content

Commit

Permalink
bump version to 0.6.0 and update release-log.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Mar 28, 2024
1 parent 7ebdd52 commit 16ac763
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ plugins {
}

ext {
wrenchSnapshot = '-SNAPSHOT' // for development builds
//wrenchSnapshot = '' // for release builds
//wrenchSnapshot = '-SNAPSHOT' // for development builds
wrenchSnapshot = '' // for release builds

jmeTarget = '' // distinguish non-JME libraries built for specific JME releases

Expand All @@ -27,7 +27,7 @@ ext {
//lwjglVersion = '3.3.3'
//lwjglVersion = '3.3.4-SNAPSHOT'

wrenchVersion = '0.5.4' + jmeTarget
wrenchVersion = '0.6.0' + jmeTarget
}

subprojects {
Expand Down
14 changes: 14 additions & 0 deletions lib/release-log.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# release log for the MonkeyWrench library

## Version 0.6.0 released on TBD

+ Bugfix: memory leak if `aiImportFileEx()` returns `null`
+ Bugfix: `NullPointerException` in `modifyTextureCoordinates()`
+ Added the capability to convert embedded textures from TGA format.
+ Added logging to diagnose unsupported FBX format versions.
+ Defined semantics for "%4$s" and "%5$s" in texture-asset search paths.
+ Added `aiProcess_GenNormals` to the default post-processing options.
+ Publicized the `defaultFlags` constant in the `LwjglAssetKey` class.
+ Improved how specific Assimp material properties are handled, mostly
by ignoring those properties.
+ Eliminated re-mapping of `WrapMode` encodings from the `Sampler` class.
+ Updated the Heart library to v9.0.0 and the Wes library to v0.8.1 .

## Version 0.5.3 released on 11 November 2023

+ Bugfix: index out of range in `SkinningControl` with software skinning
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (c) 2023, Stephen Gold
Copyright (c) 2023-2024 Stephen Gold
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
Expand Down Expand Up @@ -282,6 +282,6 @@ public static Spatial readCgm(
* @return a release name or a snapshot name (not null, not empty)
*/
public static String version() {
return "0.5.4-SNAPSHOT";
return "0.6.0";
}
}

0 comments on commit 16ac763

Please sign in to comment.