added version ID for simpler comparison (#2439)

This commit is contained in:
Kevin Papst
2021-03-16 11:24:19 +01:00
committed by GitHub
parent e1c9af795c
commit 75e62b800c
4 changed files with 55 additions and 3 deletions

View File

@@ -17,11 +17,15 @@ class Constants
/**
* The current release version
*/
public const VERSION = '1.13';
public const VERSION = '1.14';
/**
* The current release: major * 10000 + minor * 100 + patch
*/
public const VERSION_ID = 11400;
/**
* The current release status, either "stable" or "dev"
*/
public const STATUS = 'stable';
public const STATUS = 'dev';
/**
* The software name
*/