X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=kohaversion.pl;h=74dd8835a3a048ff0bc07422581040264cb31415;hb=1aede39173841aa4f99e11266216894419bef388;hp=3f40b4bc5a628c7f0c3829344a133fce8e453592;hpb=918a09dd3587861ea71ed7f606af2299243f5e04;p=koha.git diff --git a/kohaversion.pl b/kohaversion.pl index 3f40b4bc5a..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.031"; + 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;