move version to its own file in order to reduce merge conflicts with downstream projects

This commit is contained in:
nobody 2021-11-20 16:24:25 -08:00
parent 6532566dee
commit 0a67c6c1e0
2 changed files with 4 additions and 1 deletions

View file

@ -17,7 +17,8 @@ use Zotlabs\Daemon\Run;
* @brief This file defines some global constants and includes the central App class.
*/
define ( 'STD_VERSION', '21.11.14' );
require_once('version.php');
define ( 'ZOT_REVISION', '10.0' );
define ( 'DB_UPDATE_VERSION', 1254 );

2
version.php Normal file
View file

@ -0,0 +1,2 @@
<?php
define ( 'STD_VERSION', '21.11.14' );