8
0

Accepting request 91036 from devel:languages:perl

OBS-URL: https://build.opensuse.org/request/show/91036
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-Class-Load?expand=0&rev=4
This commit is contained in:
Stephan Kulow
2011-11-16 16:20:12 +00:00
committed by Git OBS Bridge
parent b8c0948cc1
commit f105e1870e
5 changed files with 92 additions and 41 deletions

View File

@@ -1,3 +1,38 @@
-------------------------------------------------------------------
Wed Oct 26 16:34:32 UTC 2011 - tabraham@novell.com
- updated to 0.11 2011-10-04
- don't accept package names that start with a digit ( Jesse Luehrs )
- rewrote some of the guts to use Module::Runtime, rather than
reimplementing its functionality ( Jesse Luehrs )
- updated to 0.10 2011-09-06
- make sure the $@ localization doesn't hide errors - invalid
module name errors were being suppressed on perls before 5.14
( Jesse Luehrs )
- Updated to 0.09 2011-09-05
- fix is_class_loaded to ignore $ISA (but still look for @ISA)
when trying to determine whether a class is loaded ( Jesse Luehrs )
- lots of internals cleanup ( Jesse Luehrs )
- updated to 0.08 2011-08-15
- the previous version was missing a prereq declaration for
Data::OptList. Reported by Daisuke Maki and Mark Hedges. RT #70285.
- updated to 0.07 2011-08-15
- All this module's subroutines now accept optional parameters for a
module so you can write something like -
load_class( 'Foo', { -version => 42 } )
- There is now a Class::Load::XS distro available on CPAN which implements
some of this module's code in XS for speed. This code was originally written
by Goro Fuji and Florian Ragwitz for Class::MOP. You need to install this
distro explicitly if you want the XS implementation.
- added a load_first_existing_class subroutine based mostly borrowed from
Class::MOP
- fixed a bug where a package with a version object in it's $VERSION would
not be seen as loaded. Reported by Chris Prather.
-------------------------------------------------------------------
Wed Dec 29 23:20:19 CET 2010 - pascal.bleser@opensuse.org