X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=kohaversion.pl;h=d35affa5c243a63ac45d531c280a6605deb0782e;hb=8892919aaa11e8f6681bd55e2e34e878e60c1732;hp=fc3fcde19e65c508b4e89fa617053b87c2e84576;hpb=7934f95494daee073d98f810e9b870965ff4cd5e;p=koha_fer diff --git a/kohaversion.pl b/kohaversion.pl index fc3fcde19e..d35affa5c2 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.026"; + our $VERSION = "3.00.00.048"; + # version needs to be set this way + # so that it can be picked up by Makefile.PL + # during install + return $VERSION; } 1;