X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=kohaversion.pl;h=d4ab71c4db66ff1cd42cfd98c9ed12bf0efcc1f5;hb=a932550b3dad4c471a4c1b1ab59dd08bec90f3de;hp=675f0958f43e46b5c13e38bdfc63030c80d13dbb;hpb=583baef555e2b8548598ce479957470b640b7ee9;p=koha.git diff --git a/kohaversion.pl b/kohaversion.pl index 675f0958f4..d4ab71c4db 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.032"; + our $VERSION = '3.00.04.010'; + # version needs to be set this way + # so that it can be picked up by Makefile.PL + # during install + return $VERSION; } 1;