X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=kohaversion.pl;h=55919dcf24fec228f55b5f8542ecec1cb72cf619;hb=51fcfe4a1ebd5b5c1ef70c1e62d2bf2bdc24bb4b;hp=82530277fc46772d4f89bfa0e0477d7c9320189a;hpb=444d01c0a5651973388e52ab5c0f76ed65f73a33;p=koha.git diff --git a/kohaversion.pl b/kohaversion.pl index 82530277fc..55919dcf24 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.033"; + our $VERSION = '3.00.06.005'; + # version needs to be set this way + # so that it can be picked up by Makefile.PL + # during install + return $VERSION; } 1;