From: Arthur Axel "fREW" Schmidt Date: Thu, 18 Feb 2010 16:39:31 +0000 (+0000) Subject: Release 0.900001_03 X-Git-Tag: v0.900201~37 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=71e2d68c0564e8f1ea054d31c0b08b3d3e931f17;hp=548cc9f7c0f740c0b24084c02801e985f164b1f8;p=dbsrgits%2FDBIx-Class-Journal.git Release 0.900001_03 --- diff --git a/Changes b/Changes index 88fe57a..7f41c70 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,13 @@ +0.900001_03 2010-02-18 + - Journal schema is now in it's own virtual package instead of being in + DBIx::Class::Schema::Journal::DB so a user should be able to have + multiple journals without them mingling + - No longer depend on Test::TempDir so this should build on windows + - Use Class::C3::Componentised instead of DBIx::Class::Componentised + - Fixed syntax error in SYNOPSIS + - Lots of cleanup (deleting unused files, commented out code, etc) + - Switched to Module::Install instead of EU::MM + 0.900001_02 - The one time I forget to run disttest, the MANIFEST file mysteriously disappears... *sigh* diff --git a/Makefile.PL b/Makefile.PL index 6ae8d5a..7b57619 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -13,7 +13,7 @@ all_from 'lib/DBIx/Class/Journal.pm'; test_requires 'Test::More' => '0.94'; test_requires 'DBD::SQLite' => '1.29'; -test_requires 'SQL::Translator' => '0.1103'; # we'll make this optional for release +test_requires 'SQL::Translator' => '0.11003'; # we'll make this optional for release requires 'DBIx::Class' => '0.08115'; requires 'Class::C3::Componentised' => '1.0006'; diff --git a/lib/DBIx/Class/Journal.pm b/lib/DBIx/Class/Journal.pm index b4990cd..02790cf 100644 --- a/lib/DBIx/Class/Journal.pm +++ b/lib/DBIx/Class/Journal.pm @@ -5,7 +5,7 @@ use base qw/DBIx::Class/; use strict; use warnings; -our $VERSION = '0.900001_02'; +our $VERSION = '0.900001_03'; $VERSION = eval $VERSION; # no errors in dev versions ## On create/insert, add new entry to AuditLog