From 37806dce4683d3da4fcc845ca00c3757c557369d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Bigaret?= <sebastien.bigaret@telecom-bretagne.eu> Date: Wed, 25 Jul 2018 17:06:10 +0200 Subject: [PATCH] Prepare release 3.0.1 --- CHANGES | 13 +++++++++++++ build.xml | 2 +- .../telecom_bretagne/praxis/common/ReleaseInfo.java | 4 ++-- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 6cedbaf7..a063ae75 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,16 @@ +v3.0.1 +------ + +- When an application does not request a specific language, use the + default one (or English) + +- Fix: applications failed to start when the system's default locale + was unsupported. + +- Now properly detects when launched with unsupported JVM (currently + v9 and v10), and informs the user before exiting. + + v3.0.0 ------ diff --git a/build.xml b/build.xml index 3fbae22a..0509b934 100644 --- a/build.xml +++ b/build.xml @@ -7,7 +7,7 @@ <format property="build.time" pattern="yyyy-MM-dd'T'hh:mm:ss.SSSZ"/> </tstamp> - <property name="praxis.version" value="3.0.0"/> + <property name="praxis.version" value="3.0.1"/> <!-- If not called from an other project setting praxis.home, define it. In details: - it is unset when directly building the jars of Praxis, diff --git a/src/eu/telecom_bretagne/praxis/common/ReleaseInfo.java b/src/eu/telecom_bretagne/praxis/common/ReleaseInfo.java index a7f452d0..6c94c1ce 100644 --- a/src/eu/telecom_bretagne/praxis/common/ReleaseInfo.java +++ b/src/eu/telecom_bretagne/praxis/common/ReleaseInfo.java @@ -7,9 +7,9 @@ package eu.telecom_bretagne.praxis.common; */ public abstract class ReleaseInfo { - public static final String release = "3.0.0"; + public static final String release = "3.0.1"; - public static final String release_date = "2018-07-17"; + public static final String release_date = "2018-07-25"; public static final int application_revision = Configuration.getInt("revision"); -- GitLab