Bug 18928: (bug 22847 follow-up) Display correctly the values (not the propagated...
[koha.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;