Skip to content

Commit

Permalink
x library: bump version to 0.2.8 and update release-notes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jan 6, 2019
1 parent 3752c9f commit ed4c50c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ ext {
jme3utilitiesheartVersion = '2.18.0'
jme3utilitiesniftyVersion = '0.8.3'
jme3utilitiesuiVersion = '0.6.7'
jme3utilitiesxVersion = '0.2.7'
jme3utilitiesxVersion = '0.2.8'
jmonkeyengineVersion = '3.2.2-stable'
skycontrolVersion = '0.9.15'
wesVersion = '0.3.8'
Expand Down
4 changes: 2 additions & 2 deletions x/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ javadocJar { baseName project.ext.baseName }
sourcesJar { baseName project.ext.baseName }

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

build.dependsOn('pom')
Expand Down
6 changes: 6 additions & 0 deletions x/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# release notes for the jme3-utilities-x library and related tests

## Version 0.2.8 released on TBD

+ Allow streaming audio with an `AudioControl`.
+ Targeted version 3.2.2-stable of jMonkeyEngine.
+ Based on version 2.18 of the jme3-utilities-heart library.

## Version 0.2.7 released on 28 December 2018

+ Targeted version 3.2.2-beta1 of jMonkeyEngine.
Expand Down
4 changes: 2 additions & 2 deletions x/src/main/java/jme3utilities/x/XVersion.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 @@ -60,6 +60,6 @@ private XVersion() {
* @return branch and revision (not null, not empty)
*/
public static String versionShort() {
return "master 0.2.7+1";
return "master 0.2.8";
}
}

0 comments on commit ed4c50c

Please sign in to comment.