Skip to content

Commit

Permalink
bump version to 0.3.9 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jan 16, 2019
1 parent e0dd3ff commit cbd5c54
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 22 deletions.
43 changes: 25 additions & 18 deletions WesLibrary/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# release notes for the Wes library
# release notes for the Wes library and related examples

Wes moved from the Jme3-utilities Project to a new GitHub repo.
## Version 0.3.9 released on TBD

+ Add the `FlashMobDemo` app and related resources.
+ Base on version 2.18 of the jme3-utilities-heart library.
+ Target JME v3.2.2-stable .

On 15 January 2019, Wes moved from the Jme3-utilities Project
to a new GitHub repo.

## Version 0.3.8 released on 28 December 2018

Expand All @@ -9,7 +16,7 @@ Wes moved from the Jme3-utilities Project to a new GitHub repo.

## Version 0.3.7 released on 23 September 2018

+ Rename WesVersion.getVersionShort() to versionShort(). (API change)
+ Rename `WesVersion.getVersionShort()` to `versionShort()`. (API change)
+ Base on version 2.10 of the heart library.

## Version 0.3.6 released on 24 July 2018
Expand All @@ -19,50 +26,50 @@ Base on version 2.5 of the heart library.
## Version 0.3.5 released on 14 February 2018

Remove an irrelevant test against track length from
TrackEdit.setFrameTime() .
`TrackEdit.setFrameTime()`.

## Version 0.3.4 released on 7 February 2018

+ Fix a validation bug in TrackEdit.truncate() .
+ Add extractAnimation(), reverse(), and setFrameTime() methods to the
TrackEdit class.
+ Fix a validation bug in `TrackEdit.truncate()`.
+ Add `extractAnimation()`, `reverse()`, and `setFrameTime()` methods to the
`TrackEdit` class.

## Version 0.3.3 released on 2 February 2018

+ Add a simplify() method to the TrackEdit class.
+ Relax a validation constraint in TweenRotations.lerp() .
+ Add a `simplify()` method to the `TrackEdit` class.
+ Relax a validation constraint in `TweenRotations.lerp()`.

## Version 0.3.2 released on 25 January 2018

Base on heart library v2.0 to make this library physics-independent.

## Version 0.3.1 released on 22 January 2018

+ Add chain() and delayAll() methods to the TrackEdit class.
+ Add `chain()` and `delayAll()` methods to the `TrackEdit` class.
+ Target JME v3.2.1 .

## Version 0.3.0for32 released on 5 December 2017

+ 1st release to target JME v3.2
+ Utilize setTrackSpatial() with spatial tracks
+ Utilize `setTrackSpatial()` with spatial tracks

## Version 0.2.4 released on 12 November 2017

+ Add an "endWeight" argument to the TrackEdit.wrap() method: an API change.
+ Handle null skeleton in Pose.rootBoneIndices().
+ Add an `endWeight` argument to the `TrackEdit.wrap()` method: an API change.
+ Handle null skeleton in `Pose.rootBoneIndices()`.

## Version 0.2.3 released on 8 September 2017

+ Add fallback transforms to the interpolate() and transform() methods in
TweenTransforms, for tracks that don't include all 3 transform components.
+ Add fallback transforms to the `interpolate()` and `transform()` methods in
`TweenTransforms`, for tracks that don't include all 3 transform components.
These are API changes.

## Version 0.2.2 released on 7 September 2017

+ Generalize BoneTrack methods to also work for SpatialTracks. (This involved
+ Generalize `BoneTrack` methods to also work for `SpatialTracks`. (This involved
some API changes.)
+ Rename TweenTransforms.boneTransform() to transform().
+ Add newTrack() and setKeyframes() methods to TrackEdit class.
+ Rename `TweenTransforms.boneTransform()` to `transform()`.
+ Add `newTrack()` and `setKeyframes()` methods to `TrackEdit` class.

## Version 0.2.1 released on 4 September 2017

Expand Down
4 changes: 2 additions & 2 deletions WesLibrary/src/main/java/jme3utilities/wes/WesVersion.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Copyright (c) 2017-2018, Stephen Gold
Copyright (c) 2017-2019, Stephen Gold
All rights reserved.
Redistribution and use in source and binary forms, with or without
Expand Down Expand Up @@ -59,6 +59,6 @@ private WesVersion() {
* @return branch and revision (not null, not empty)
*/
public static String versionShort() {
return "master 0.3.8+1";
return "master 0.3.9";
}
}
4 changes: 2 additions & 2 deletions common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ gradle.projectsEvaluated {
}

ext {
// current versions of the libraries
// current versions of libraries
jmonkeyengineVersion = '3.2.2-stable'
wesVersion = '0.3.8'
wesVersion = '0.3.9'
}

repositories {
Expand Down

0 comments on commit cbd5c54

Please sign in to comment.