Bug 6530 follow-up for fix Item_Due / Item_DUE in message_attributes
[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.06.02.001';
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;