Follow up for new translation wrapper
[koha.git] / kohaversion.pl
blob214efcc476a928da6832135331033bbf3606987d
1 # the next koha public release version number;
2 # the kohaversion is divided in 4 parts :
3 # - #1 : the major number. 3 atm
4 # - #2 : the functionnal release. 00 atm
5 # - #3 : the subnumber, moves only on a public release
6 # - #4 : the developer version. The 4th number is the database subversion.
7 # used by developers when the database changes. updatedatabase take care of the changes itself
8 # and is automatically called by Auth.pm when needed.
10 use strict;
12 sub kohaversion {
13 our $VERSION = '3.01.00.120';
14 # version needs to be set this way
15 # so that it can be picked up by Makefile.PL
16 # during install
17 return $VERSION;