Merge branch 'people/TBSliver/source_order_fix'
skaufman [Wed, 27 May 2015 14:47:19 +0000 (14:47 +0000)]
Changes
Makefile.PL
dist.ini
lib/DBIx/Class/Fixtures.pm

diff --git a/Changes b/Changes
index c17ec7d..82cae22 100644 (file)
--- a/Changes
+++ b/Changes
@@ -2,8 +2,11 @@ Revision history for DBIx-Class-Fixtures
 
 {{$NEXT}}
 
-- use Test::TempDir::Tiny for better test parallelization and cleanup
+1.001_030 2015-05-27 14:43:34+00:00 UTC (TRIAL RELEASE)
 
+- Fix for an issue where when inserting data into a database,
+    the tables were being sorted alphabetically, rather than in dependency order. ( TBSliver++ )
+- use Test::TempDir::Tiny for better test parallelization and cleanup ( RsrchBoy++ )
 
 1.001_029 2015-01-14 15:17:28+00:00 Europe/London
 
index ffae7ff..9e0180a 100644 (file)
@@ -41,7 +41,8 @@ my %WriteMakefileArgs = (
     "MIME::Base64" => 0,
     "Path::Class" => "0.32",
     "Scalar::Util" => "1.27",
-    "Test::Compile::Internal" => 0
+    "Test::Compile::Internal" => 0,
+    "Test::TempDir::Tiny" => 0
   },
   "TEST_REQUIRES" => {
     "File::Spec" => 0,
@@ -49,7 +50,7 @@ my %WriteMakefileArgs = (
     "IPC::Open3" => 0,
     "Test::More" => "0.98"
   },
-  "VERSION" => "1.001_029",
+  "VERSION" => "1.001_030",
   "test" => {
     "TESTS" => "t/*.t"
   }
@@ -81,7 +82,8 @@ my %FallbackPrereqs = (
   "Path::Class" => "0.32",
   "Scalar::Util" => "1.27",
   "Test::Compile::Internal" => 0,
-  "Test::More" => "0.98"
+  "Test::More" => "0.98",
+  "Test::TempDir::Tiny" => 0
 );
 
 
index 1b182c8..34560e9 100644 (file)
--- a/dist.ini
+++ b/dist.ini
@@ -15,12 +15,16 @@ repository.url    = https://github.com/dbsrgits/DBIx-Class-Fixtures.git
 repository.web    = https://github.com/dbsrgits/DBIx-Class-Fixtures
 repository.type   = git
 
+[MetaNoIndex]
+directory=t/lib
+directory=t/var
+
+[VersionFromModule]
 [PkgVersion]
 [NextRelease]
 
 [Git::Tag]
 [Git::Contributors]
-[VersionFromModule]
 
 [Git::Push]
 
index ca67622..0cf6786 100644 (file)
@@ -23,7 +23,7 @@ our $namespace_counter = 0;
 __PACKAGE__->mk_group_accessors( 'simple' => qw/config_dir
     _inherited_attributes debug schema_class dumped_objects config_attrs/);
 
-our $VERSION = '1.001_029';
+our $VERSION = '1.001_030';
 
 $VERSION = eval $VERSION;