dev version bump

This commit is contained in:
Autumn Lamonte 2022-02-03 17:22:32 -06:00
parent deebceb300
commit 5939f1aa77
3 changed files with 3 additions and 3 deletions

View file

@ -30,7 +30,7 @@
<project name="jexer" basedir="." default="jar">
<property name="version" value="1.6.0"/>
<property name="version" value="1.6.1"/>
<property name="src.dir" value="src"/>
<property name="resources.dir" value="resources"/>
<property name="build.dir" value="build"/>

View file

@ -2251,7 +2251,7 @@ public class TApplication implements Runnable {
String version = getClass().getPackage().getImplementationVersion();
if (version == null) {
// This is Java 9+, use a hardcoded string here.
version = "1.6.0";
version = "1.6.1";
}
messageBox(i18n.getString("aboutDialogTitle"),
MessageFormat.format(i18n.getString("aboutDialogText"), version),

View file

@ -245,7 +245,7 @@ public class ECMA48 implements Runnable {
/**
* The version of the terminal to report in XTVERSION.
*/
private final String VERSION = "1.6.0";
private final String VERSION = "1.6.1";
// ------------------------------------------------------------------------
// Variables --------------------------------------------------------------