repo.or.cz
/
koha.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Bug 20941: (follow-up) Update N/A handling
[koha.git]
/
kohaversion.pl
blob
d21563478917389fec50172c9a5148f9567f9829
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
;