
This commit is generated using: % perl misc/devel/tidy.pl *within* ktd, to get the same version of perltidy than what will be used by our CI (currently v20230309). Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
15 lines
267 B
Perl
Executable file
15 lines
267 B
Perl
Executable file
# the next koha public release version number;
|
|
|
|
use Modern::Perl;
|
|
use Koha;
|
|
|
|
sub kohaversion {
|
|
our $VERSION = $Koha::VERSION;
|
|
|
|
# version needs to be set this way
|
|
# so that it can be picked up by Makefile.PL
|
|
# during install
|
|
return $VERSION;
|
|
}
|
|
|
|
1;
|