increment the version numbers in Column.pm and Table.pm and the "use" statements...
authorivan <ivan>
Thu, 30 Mar 2006 14:48:43 +0000 (14:48 +0000)
committerivan <ivan>
Thu, 30 Mar 2006 14:48:43 +0000 (14:48 +0000)
Changes
DBSchema.pm
DBSchema/Column.pm
DBSchema/Table.pm
debian/control

diff --git a/Changes b/Changes
index 5596289..dcfcd3a 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Perl extension DBIx::DBSchema.
 
+0.31 unreleased
+       - increment the version numbers in Column.pm and Table.pm and the
+         "use" statements accordingly
+
 0.31 Thu Mar 30 05:28:20 PST 2006
        - more schema update stuff:
        - added Column::sql_alter_column
index 893696a..d7d6dc0 100644 (file)
@@ -5,7 +5,7 @@ use vars qw(@ISA $VERSION $DEBUG);
 #use Exporter;
 use Storable;
 use DBIx::DBSchema::_util qw(_load_driver _dbh);
-use DBIx::DBSchema::Table;
+use DBIx::DBSchema::Table 0.03;
 use DBIx::DBSchema::Column;
 use DBIx::DBSchema::ColGroup::Unique;
 use DBIx::DBSchema::ColGroup::Index;
index 44b6099..ca6ecc8 100644 (file)
@@ -9,7 +9,7 @@ use DBIx::DBSchema::_util qw(_load_driver _dbh);
 #@ISA = qw(Exporter);
 @ISA = qw();
 
-$VERSION = '0.06';
+$VERSION = '0.07';
 
 =head1 NAME
 
index fc008f9..ef1ad6e 100644 (file)
@@ -5,14 +5,14 @@ use vars qw(@ISA $VERSION $DEBUG %create_params);
 #use Carp;
 #use Exporter;
 use DBIx::DBSchema::_util qw(_load_driver _dbh);
-use DBIx::DBSchema::Column 0.03;
+use DBIx::DBSchema::Column 0.07;
 use DBIx::DBSchema::ColGroup::Unique;
 use DBIx::DBSchema::ColGroup::Index;
 
 #@ISA = qw(Exporter);
 @ISA = qw();
 
-$VERSION = '0.02';
+$VERSION = '0.03';
 $DEBUG = 0;
 
 =head1 NAME
index e147d48..02f92c0 100644 (file)
@@ -18,7 +18,7 @@ Description: Database-independent schema objects
  and restore it from a different process.  Most importantly, DBIx::DBSchema
  can write SQL CREATE statements  for different databases from a single source.
  .
- Currently supported databases are MySQL, PostgreSQL, Oracle and Sybase.
+ Currently supported databases are MySQL, PostgreSQL, Oracle, Sybase and SQLite.
  DBIx::DBSchema will attempt to use generic SQL syntax for other databases.
  Assistance adding support for other databases is welcomed.  See the
  DBIx::DBSchema::DBD manpage, "Driver Writer's Guide and Base Class".