From 0b972be5a7400773302c066802ad46efff24da78 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Tue, 3 Nov 2009 21:37:22 -0800 Subject: [PATCH] Document that Locales::Country is required for the new UPS shipping driver. --- docs/gotcha.txt | 5 +++++ sbin/testEnvironment.pl | 1 + 2 files changed, 6 insertions(+) diff --git a/docs/gotcha.txt b/docs/gotcha.txt index 1591c5be9..c70883e6d 100644 --- a/docs/gotcha.txt +++ b/docs/gotcha.txt @@ -7,6 +7,11 @@ upgrading from one version to the next, or even between multiple versions. Be sure to heed the warnings contained herein as they will save you many hours of grief. +7.8.3 +-------------------------------------------------------------------- + * WebGUI now requires Locales::Country 0.05 or higher to use + the UPS shipping driver. + 7.8.2 -------------------------------------------------------------------- * WebGUI now requires Business::PayPal::API 0.62 or higher. diff --git a/sbin/testEnvironment.pl b/sbin/testEnvironment.pl index c5b468305..32c7c7d68 100755 --- a/sbin/testEnvironment.pl +++ b/sbin/testEnvironment.pl @@ -134,6 +134,7 @@ checkModule("CSS::Minifier::XS", "0.03" ); checkModule("JavaScript::Minifier::XS", "0.05" ); checkModule("Readonly", "1.03" ); checkModule("Business::PayPal::API", "0.62" ); +checkModule("Locales::Country", "0.05" ); failAndExit("Required modules are missing, running no more checks.") if $missingModule;