Bug 18508: Fix t/db_dependent/api/v1/swagger/definitions.t (follow-up of 6758)
[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;