-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
vrl for newer jdks >= 11 (see changes in vrl-studio)
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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-" + /*<VRL_COMPILE_DATE_YEAR>*/"2018"/*</VRL_COMPILE_DATE_YEAR>*/ + " by Michael Hoffer <[email protected]>"; | ||
"2006-" + /*<VRL_COMPILE_DATE_YEAR>*/"2020"/*</VRL_COMPILE_DATE_YEAR>*/ + " by Michael Hoffer <[email protected]>"; | ||
/** | ||
* Simple copyright statement (usefull for windows titles etc.) | ||
*/ | ||
public static final String COPYRIGHT_SIMPLE = | ||
"2006-" + /*<VRL_COMPILE_DATE_YEAR>*/"2018"/*</VRL_COMPILE_DATE_YEAR>*/ + " by Michael Hoffer"; | ||
"2006-" + /*<VRL_COMPILE_DATE_YEAR>*/"2020"/*</VRL_COMPILE_DATE_YEAR>*/ + " by Michael Hoffer"; | ||
/** | ||
* Defines which projects can be processed by this version of VRL. | ||
*/ | ||
|