Bug 13807 Rework main input loop in SIPServer
[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;