Merge remote branch 'kc/new/enh/bug_5628' into kcmaster
[koha.git] / kohaversion.pl
1 # the next koha public release version number;
2
3 =head1 FUNCTIONS
4
5 =head2 kohaversion
6
7 the kohaversion is divided in 4 parts :
8  - #1 : the major number. 3 atm
9  - #2 : the functionnal 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 =cut
15
16 use strict;
17
18 sub kohaversion {
19     our $VERSION = '3.03.00.013';
20     # version needs to be set this way
21     # so that it can be picked up by Makefile.PL
22     # during install
23     return $VERSION;
24 }
25
26 1;