dev version bump to 0.3.2
authorKevin Lamonte <kevin.lamonte@gmail.com>
Mon, 5 Aug 2019 02:22:47 +0000 (21:22 -0500)
committerKevin Lamonte <kevin.lamonte@gmail.com>
Mon, 5 Aug 2019 02:22:47 +0000 (21:22 -0500)
build.xml
src/jexer/TApplication.java

index 8398701abcd3c4ee94bb5d891f669a0cb7a9a3b6..92d488bc6267f371bf5917711f8e807d67439e40 100644 (file)
--- a/build.xml
+++ b/build.xml
@@ -30,7 +30,7 @@
 
 <project name="jexer" basedir="." default="jar">
 
-  <property name="version"       value="0.3.1"/>
+  <property name="version"       value="0.3.2"/>
   <property name="src.dir"       value="src"/>
   <property name="resources.dir" value="resources"/>
   <property name="build.dir"     value="build"/>
index 83dbd25e305e2a09eb43b1127f00323d7242e94f..b44664ee7d5926fd00dca5240115a9dcafb61738 100644 (file)
@@ -1483,7 +1483,7 @@ public class TApplication implements Runnable {
         String version = getClass().getPackage().getImplementationVersion();
         if (version == null) {
             // This is Java 9+, use a hardcoded string here.
-            version = "0.3.1";
+            version = "0.3.2";
         }
         messageBox(i18n.getString("aboutDialogTitle"),
             MessageFormat.format(i18n.getString("aboutDialogText"), version),