Document new version perl required for the updated *Packer modules. Fixes bug #12049.

This commit is contained in:
Colin Kuskie 2011-02-21 13:30:45 -08:00
parent ae3e49d622
commit e04208e3a2
3 changed files with 6 additions and 2 deletions

View file

@ -7,6 +7,7 @@
- fixed #12046: Empty AssetProxy creates infinite loop (Dale Trexel) - fixed #12046: Empty AssetProxy creates infinite loop (Dale Trexel)
- Metadata is now versioned - Metadata is now versioned
- Metadata fields can be restricted by asset class - Metadata fields can be restricted by asset class
- fixed #12049: gotcha: 7.10.9 needs perl > 5.8.8
7.10.9 7.10.9
- fixed #12030: Calendar Feed Time Zone Issue - fixed #12030: Calendar Feed Time Zone Issue

View file

@ -11,6 +11,9 @@ save you many hours of grief.
-------------------------------------------------------------------- --------------------------------------------------------------------
* Asset metadata is now versioned. * Asset metadata is now versioned.
* The updated versions of HTML::Packer, JavaScript::Packer and CSS::Packer
added for 7.10.9 require perl 5.8.8 or higher to run.
7.10.9 7.10.9
-------------------------------------------------------------------- --------------------------------------------------------------------
* WebGUI now depends on Data::ICal for making and reading iCal feeds * WebGUI now depends on Data::ICal for making and reading iCal feeds

View file

@ -52,10 +52,10 @@ printResult($webguiRoot);
################################### ###################################
printTest("Perl Interpreter"); printTest("Perl Interpreter");
if ($] >= 5.008) { if ($] >= 5.008008) {
printResult("OK"); printResult("OK");
} else { } else {
failAndExit("Please upgrade to 5.8 or later! Cannot continue without Perl 5.8 or higher."); failAndExit("Please upgrade to 5.8.8 or later! Cannot continue without Perl 5.8.8 or higher.");
} }
##Doing this as a global is not nice, but it works ##Doing this as a global is not nice, but it works