Bug 13758: Move the Koha version from kohaversion.pl
[koha.git] / Koha.pm
1 package Koha;
2
3 use Modern::Perl;
4
5 use vars qw{ $VERSION };
6
7 #the kohaversion is divided in 4 parts :
8 # - #1 : the major number. 3 atm
9 # - #2 : the functional release. 00 atm
10 # - #3 : the subnumber, moves only on a public release
11 # - #4 : the developer version. The 4th number is the database subversion.
12 #        used by developers when the database changes. updatedatabase take care of the changes itself
13 #        and is automatically called by Auth.pm when needed.
14 $VERSION = "3.19.00.038";
15
16 sub version {
17     return $VERSION;
18 }
19
20 1;