From 7c944b30a5dc1b191d59650f5020fbdbaa160611 Mon Sep 17 00:00:00 2001 From: Michael Hoffer Date: Tue, 16 Jun 2020 11:40:19 +0200 Subject: [PATCH] vrl for newer jdks >= 11 (see changes in vrl-studio) --- VRL/src/eu/mihosoft/vrl/system/Constants.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/VRL/src/eu/mihosoft/vrl/system/Constants.java b/VRL/src/eu/mihosoft/vrl/system/Constants.java index ad4332cd..0681d74b 100644 --- a/VRL/src/eu/mihosoft/vrl/system/Constants.java +++ b/VRL/src/eu/mihosoft/vrl/system/Constants.java @@ -72,11 +72,11 @@ public class Constants { * variable indicate incompatible versions. Thus, for each major version, a * custom property folder will be generated. */ - public static final String VERSION_MAJOR = "0.4.4"; + public static final String VERSION_MAJOR = "0.4.5"; /** * VRL version number that indicates major and minor changes. */ - public static final String VERSION_BASE = VERSION_MAJOR + ".0.3"; + public static final String VERSION_BASE = VERSION_MAJOR + ".0.0"; // "-HEAD" or "-unstable" or "" for release etc. public static final String VERSION_SUFFIX = ""; // full version (base+suffix+date) @@ -87,12 +87,12 @@ public class Constants { * Copyright statement. */ public static final String COPYRIGHT = - "2006-" + /**/"2018"/**/ + " by Michael Hoffer <info@michaelhoffer.de>"; + "2006-" + /**/"2020"/**/ + " by Michael Hoffer <info@michaelhoffer.de>"; /** * Simple copyright statement (usefull for windows titles etc.) */ public static final String COPYRIGHT_SIMPLE = - "2006-" + /**/"2018"/**/ + " by Michael Hoffer"; + "2006-" + /**/"2020"/**/ + " by Michael Hoffer"; /** * Defines which projects can be processed by this version of VRL. */