From: Brandon L. Black Date: Thu, 7 Jun 2007 23:42:57 +0000 (+0000) Subject: 0.07999_05 (2nd 0.08 RC) X-Git-Tag: v0.08010~150^2~16 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class.git;a=commitdiff_plain;h=ff132c6fc09e56b7b1bdad28f850cc21fc6a03b7 0.07999_05 (2nd 0.08 RC) --- diff --git a/Changes b/Changes index 58a01ea..ec629fa 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,6 @@ Revision history for DBIx::Class +0.07999_05 2007-06-07 23:00:00 - Made source_name rw in ResultSource - Fixed up SQL::Translator test/runtime dependencies - Fixed t/60core.t in the absence of DateTime::Format::MySQL diff --git a/Makefile.PL b/Makefile.PL index a8319c5..00e5c25 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -27,6 +27,13 @@ install_script 'script/dbicadmin'; tests "t/*.t t/*/*.t"; +# re-build README if we're in an svk checkout +if( -e 'MANIFEST.SKIP' ) { + system('pod2text lib/DBIx/Class.pm > README'); +} + +auto_provides; + auto_install; WriteAll; diff --git a/lib/DBIx/Class.pm b/lib/DBIx/Class.pm index 173c038..ccd54c0 100644 --- a/lib/DBIx/Class.pm +++ b/lib/DBIx/Class.pm @@ -18,7 +18,7 @@ sub component_base_class { 'DBIx::Class' } # i.e. first release of 0.XX *must* be 0.XX000. This avoids fBSD ports # brain damage and presumably various other packaging systems too -$VERSION = '0.07999_04'; +$VERSION = '0.07999_05'; sub MODIFY_CODE_ATTRIBUTES { my ($class,$code,@attrs) = @_;