From 0a67c6c1e0c530cd6343bc9399bb43d7d1d08982 Mon Sep 17 00:00:00 2001 From: nobody Date: Sat, 20 Nov 2021 16:24:25 -0800 Subject: [PATCH] move version to its own file in order to reduce merge conflicts with downstream projects --- boot.php | 3 ++- version.php | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 version.php diff --git a/boot.php b/boot.php index 1a34237b0..43f884fae 100755 --- a/boot.php +++ b/boot.php @@ -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 ); diff --git a/version.php b/version.php new file mode 100644 index 000000000..cb417abbf --- /dev/null +++ b/version.php @@ -0,0 +1,2 @@ +