From f620a771cb7e17761430431e3fbb123785766b48 Mon Sep 17 00:00:00 2001 From: Paul POULAIN Date: Thu, 16 Aug 2007 12:28:49 +0200 Subject: [PATCH] Adding KOHAVERSION management. (adding forgotten kohaversion.pl) Signed-off-by: Chris Cormack --- kohaversion.pl | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 kohaversion.pl diff --git a/kohaversion.pl b/kohaversion.pl new file mode 100644 index 0000000000..569f65a6a1 --- /dev/null +++ b/kohaversion.pl @@ -0,0 +1,14 @@ +# the next koha public release version number; +# the kohaversion is divided in 4 parts : +# - #1 : the major number. 3 atm +# - #2 : the functionnal release. 00 atm +# - #3 : the subnumber, moves only on a public release +# - #4 : the developper version. The 4th number is the database subversion. +# used by developpers when the database changes. updatedatabase take care of the changes itself +# and is automatically called by Auth.pm when needed. + +sub kohaversion { + return "3.00.00.001"; +} + +1; -- 2.39.2