X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=kohaversion.pl;h=74dd8835a3a048ff0bc07422581040264cb31415;hb=ed1f1301967f063eb49b183392e2da1b529f7ed0;hp=c18be35ee2f6b121d572da00c279d0889708a0d3;hpb=b69facedc4f0c1c2194244df9d97460851b273a5;p=koha.git diff --git a/kohaversion.pl b/kohaversion.pl index c18be35ee2..74dd8835a3 100644 --- a/kohaversion.pl +++ b/kohaversion.pl @@ -7,8 +7,14 @@ # used by developers when the database changes. updatedatabase take care of the changes itself # and is automatically called by Auth.pm when needed. +use strict; + sub kohaversion { - return "3.00.00.029"; + our $VERSION = '3.00.04.016'; + # version needs to be set this way + # so that it can be picked up by Makefile.PL + # during install + return $VERSION; } 1;