Bug 26265: (QA follow-up) Remove g option from regex, add few dirs
[koha-equinox.git] / kohaversion.pl
1 # the next koha public release version number;
2
3 use Modern::Perl;
4 use Koha;
5
6 sub kohaversion {
7     our $VERSION = $Koha::VERSION;
8     # version needs to be set this way
9     # so that it can be picked up by Makefile.PL
10     # during install
11     return $VERSION;
12 }
13
14 1;