diff options
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | lib/MDK/Common.pm.pl | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,3 +1,5 @@ +Version 1.2.14 - 1 October 2008, by Pascal "Pixel" Rigaux + - round_up(), round_down(): workaround "Illegal modulus zero" (#43165) Version 1.2.13 - 9 September 2008, by Pascal "Pixel" Rigaux diff --git a/lib/MDK/Common.pm.pl b/lib/MDK/Common.pm.pl index 55c13f5..3581430 100644 --- a/lib/MDK/Common.pm.pl +++ b/lib/MDK/Common.pm.pl @@ -73,7 +73,7 @@ our @ISA = qw(Exporter); # perl_checker: RE-EXPORT-ALL our @EXPORT = map { @$_ } map { values %{'MDK::Common::' . $_ . 'EXPORT_TAGS'} } grep { /::$/ } keys %MDK::Common::; -our $VERSION = "1.2.13"; +our $VERSION = "1.2.14"; 1; EOF |