Bumping version to 1.61
Matt S Trout [Mon, 6 Apr 2020 21:31:01 +0000 (21:31 +0000)]
70 files changed:
lib/SQL/Translator.pm
lib/SQL/Translator/Filter/DefaultExtra.pm
lib/SQL/Translator/Filter/Globals.pm
lib/SQL/Translator/Filter/Names.pm
lib/SQL/Translator/Parser.pm
lib/SQL/Translator/Parser/Access.pm
lib/SQL/Translator/Parser/DBI.pm
lib/SQL/Translator/Parser/DBI/DB2.pm
lib/SQL/Translator/Parser/DBI/MySQL.pm
lib/SQL/Translator/Parser/DBI/Oracle.pm
lib/SQL/Translator/Parser/DBI/PostgreSQL.pm
lib/SQL/Translator/Parser/DBI/SQLServer.pm
lib/SQL/Translator/Parser/DBI/SQLite.pm
lib/SQL/Translator/Parser/DBI/Sybase.pm
lib/SQL/Translator/Parser/Excel.pm
lib/SQL/Translator/Parser/JSON.pm
lib/SQL/Translator/Parser/MySQL.pm
lib/SQL/Translator/Parser/Oracle.pm
lib/SQL/Translator/Parser/PostgreSQL.pm
lib/SQL/Translator/Parser/SQLServer.pm
lib/SQL/Translator/Parser/SQLite.pm
lib/SQL/Translator/Parser/Storable.pm
lib/SQL/Translator/Parser/Sybase.pm
lib/SQL/Translator/Parser/XML.pm
lib/SQL/Translator/Parser/XML/SQLFairy.pm
lib/SQL/Translator/Parser/YAML.pm
lib/SQL/Translator/Parser/xSV.pm
lib/SQL/Translator/Producer.pm
lib/SQL/Translator/Producer/ClassDBI.pm
lib/SQL/Translator/Producer/DB2.pm
lib/SQL/Translator/Producer/DiaUml.pm
lib/SQL/Translator/Producer/Diagram.pm
lib/SQL/Translator/Producer/Dumper.pm
lib/SQL/Translator/Producer/GraphViz.pm
lib/SQL/Translator/Producer/HTML.pm
lib/SQL/Translator/Producer/JSON.pm
lib/SQL/Translator/Producer/Latex.pm
lib/SQL/Translator/Producer/MySQL.pm
lib/SQL/Translator/Producer/Oracle.pm
lib/SQL/Translator/Producer/POD.pm
lib/SQL/Translator/Producer/PostgreSQL.pm
lib/SQL/Translator/Producer/SQLServer.pm
lib/SQL/Translator/Producer/SQLite.pm
lib/SQL/Translator/Producer/Storable.pm
lib/SQL/Translator/Producer/Sybase.pm
lib/SQL/Translator/Producer/TT/Base.pm
lib/SQL/Translator/Producer/TT/Table.pm
lib/SQL/Translator/Producer/TTSchema.pm
lib/SQL/Translator/Producer/XML.pm
lib/SQL/Translator/Producer/XML/SQLFairy.pm
lib/SQL/Translator/Producer/YAML.pm
lib/SQL/Translator/Schema.pm
lib/SQL/Translator/Schema/Constants.pm
lib/SQL/Translator/Schema/Constraint.pm
lib/SQL/Translator/Schema/Field.pm
lib/SQL/Translator/Schema/Index.pm
lib/SQL/Translator/Schema/Object.pm
lib/SQL/Translator/Schema/Procedure.pm
lib/SQL/Translator/Schema/Table.pm
lib/SQL/Translator/Schema/Trigger.pm
lib/SQL/Translator/Schema/View.pm
lib/SQL/Translator/Utils.pm
lib/Test/SQL/Translator.pm
script/sqlt
script/sqlt-diagram
script/sqlt-diff
script/sqlt-diff-old
script/sqlt-dumper
script/sqlt-graph
script/sqlt.cgi

index 35febfe..67a8e07 100644 (file)
@@ -3,7 +3,7 @@ package SQL::Translator;
 use Moo;
 our ( $DEFAULT_SUB, $DEBUG, $ERROR );
 
-our $VERSION  = '1.60';
+our $VERSION  = '1.61';
 $VERSION =~ tr/_//d;
 $DEBUG    = 0 unless defined $DEBUG;
 $ERROR    = "";
index e7c5923..ebaa7df 100644 (file)
@@ -33,7 +33,7 @@ objects.
 
 use strict;
 use warnings;
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 sub filter {
     my $schema = shift;
index 497d30c..9251689 100644 (file)
@@ -38,7 +38,7 @@ SQL::Translator::Filter::Globals - Add global fields and indices to all tables.
 
 use strict;
 use warnings;
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 sub filter {
     my $schema = shift;
index ad4cf13..87038bd 100644 (file)
@@ -29,7 +29,7 @@ SQL::Translator::Filter::Names - Tweak the names of schema objects.
 
 use strict;
 use warnings;
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 sub filter {
     my $schema = shift;
index cb99418..953143a 100644 (file)
@@ -2,7 +2,7 @@ package SQL::Translator::Parser;
 
 use strict;
 use warnings;
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 sub parse { "" }
 
index 86f17b6..f931d0a 100644 (file)
@@ -22,7 +22,7 @@ something similar to the output of mdbtools (http://mdbtools.sourceforge.net/).
 use strict;
 use warnings;
 
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 our $DEBUG;
 $DEBUG = 0 unless defined $DEBUG;
index 7a43195..3505af5 100644 (file)
@@ -102,7 +102,7 @@ use strict;
 use warnings;
 use DBI;
 our @EXPORT;
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 use constant DRIVERS => {
     mysql            => 'MySQL',
index ef2ec24..a03ebed 100644 (file)
@@ -23,7 +23,7 @@ use SQL::Translator::Parser::DB2;
 use SQL::Translator::Schema::Constants;
 
 our ($DEBUG, $VERSION, @EXPORT_OK );
-# $VERSION = '1.60';
+# $VERSION = '1.61';
 $DEBUG   = 0 unless defined $DEBUG;
 
 sub parse {
index 90bb43f..3b4babb 100644 (file)
@@ -24,7 +24,7 @@ use SQL::Translator::Schema::Constants;
 use SQL::Translator::Parser::MySQL;
 
 our ( $DEBUG, @EXPORT_OK );
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 $DEBUG   = 0 unless defined $DEBUG;
 
 sub parse {
index f3d0742..f6b03e2 100644 (file)
@@ -22,7 +22,7 @@ use SQL::Translator::Schema::Table;
 use SQL::Translator::Schema::Field;
 use SQL::Translator::Schema::Constraint;
 
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 sub parse {
     my ( $tr, $dbh ) = @_;
index 2cfe9f3..b08be12 100644 (file)
@@ -21,7 +21,7 @@ use Data::Dumper;
 use SQL::Translator::Schema::Constants;
 
 our ( $DEBUG, @EXPORT_OK );
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 $DEBUG   = 0 unless defined $DEBUG;
 
 my $actions = {c => 'cascade',
index cfac434..99ca8e0 100644 (file)
@@ -21,7 +21,7 @@ use SQL::Translator::Schema;
 use Data::Dumper;
 
 our ( $DEBUG, @EXPORT_OK );
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 $DEBUG   = 0 unless defined $DEBUG;
 
 no strict 'refs';
index 04184ab..b86ed03 100644 (file)
@@ -26,7 +26,7 @@ use SQL::Translator::Parser::SQLite;
 use Data::Dumper;
 
 our ( $DEBUG, @EXPORT_OK );
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 $DEBUG   = 0 unless defined $DEBUG;
 
 sub parse {
index ec8bcf3..c3583c0 100644 (file)
@@ -21,7 +21,7 @@ use SQL::Translator::Schema;
 use Data::Dumper;
 
 our ( $DEBUG, @EXPORT_OK );
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 $DEBUG   = 0 unless defined $DEBUG;
 
 no strict 'refs';
index 72c0523..54ef50b 100644 (file)
@@ -32,7 +32,7 @@ use strict;
 use warnings;
 our ($DEBUG, @EXPORT_OK);
 $DEBUG = 0 unless defined $DEBUG;
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 use Spreadsheet::ParseExcel;
 use Exporter;
index 0fb3435..f6e5aee 100644 (file)
@@ -2,7 +2,7 @@ package SQL::Translator::Parser::JSON;
 
 use strict;
 use warnings;
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 use SQL::Translator::Schema;
 use SQL::Translator::Utils qw(header_comment);
index eedf583..5df48ed 100644 (file)
@@ -132,7 +132,7 @@ More information about the MySQL comment-syntax: L<http://dev.mysql.com/doc/refm
 use strict;
 use warnings;
 
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 our $DEBUG;
 $DEBUG   = 0 unless defined $DEBUG;
index 25215a1..63a31ca 100644 (file)
@@ -78,7 +78,7 @@ was altered to better handle the syntax created by DDL::Oracle.
 use strict;
 use warnings;
 
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 our $DEBUG;
 $DEBUG   = 0 unless defined $DEBUG;
index 7565843..d5c5a8f 100644 (file)
@@ -89,7 +89,7 @@ View table:
 use strict;
 use warnings;
 
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 our $DEBUG;
 $DEBUG   = 0 unless defined $DEBUG;
index ff8d433..9b0979a 100644 (file)
@@ -19,7 +19,7 @@ should probably be considered a work in progress.
 use strict;
 use warnings;
 
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 our $DEBUG;
 $DEBUG   = 0 unless defined $DEBUG;
index 8f09464..ee70e05 100644 (file)
@@ -133,7 +133,7 @@ like-op::=
 use strict;
 use warnings;
 
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 our $DEBUG;
 $DEBUG   = 0 unless defined $DEBUG;
index a85d750..6d0776c 100644 (file)
@@ -21,7 +21,7 @@ the data into a database tables or graphs.
 
 use strict;
 use warnings;
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 our $DEBUG;
 $DEBUG = 0 unless defined $DEBUG;
index 8121404..8089634 100644 (file)
@@ -20,7 +20,7 @@ DBI-Sybase parser included with SQL::Translator.
 use strict;
 use warnings;
 
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 our $DEBUG;
 $DEBUG   = 0 unless defined $DEBUG;
index 4543219..b154153 100644 (file)
@@ -23,7 +23,7 @@ Ken Y. Clark E<lt>kclark@cpan.orgE<gt>.
 use strict;
 use warnings;
 our $DEBUG;
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 $DEBUG = 1 unless defined $DEBUG;
 
 use SQL::Translator::Parser::XML::SQLFairy;
index e67dded..cef0340 100644 (file)
@@ -79,7 +79,7 @@ use strict;
 use warnings;
 
 our ( $DEBUG, @EXPORT_OK );
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 $DEBUG   = 0 unless defined $DEBUG;
 
 use Data::Dumper;
index 29e9d14..c573eb5 100644 (file)
@@ -2,7 +2,7 @@ package SQL::Translator::Parser::YAML;
 
 use strict;
 use warnings;
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 use SQL::Translator::Schema;
 use SQL::Translator::Utils qw(header_comment);
index e5ad4dd..b2de869 100644 (file)
@@ -46,7 +46,7 @@ C<SQL::Translator::Utils::normalize_name>.
 use strict;
 use warnings;
 our @EXPORT;
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 use Exporter;
 use Text::ParseWords qw(quotewords);
index e14093c..65170dd 100644 (file)
@@ -3,7 +3,7 @@ package SQL::Translator::Producer;
 use strict;
 use warnings;
 use Scalar::Util ();
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 sub produce { "" }
 
index f842165..519aa4b 100644 (file)
@@ -3,7 +3,7 @@ package SQL::Translator::Producer::ClassDBI;
 use strict;
 use warnings;
 our $DEBUG;
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 $DEBUG = 1 unless defined $DEBUG;
 
 use SQL::Translator::Schema::Constants;
index 77f6904..7fffa40 100644 (file)
@@ -21,7 +21,7 @@ use warnings;
 use strict;
 use warnings;
 our ( $DEBUG, $WARN );
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 $DEBUG   = 0 unless defined $DEBUG;
 
 use SQL::Translator::Schema::Constants;
index 0658506..c65b8bc 100644 (file)
@@ -34,7 +34,7 @@ use strict;
 use warnings;
 
 our ( $DEBUG, @EXPORT_OK );
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 $DEBUG   = 0 unless defined $DEBUG;
 
 use File::ShareDir qw/dist_dir/;
index 267c1d5..30bcef1 100644 (file)
@@ -47,7 +47,7 @@ use SQL::Translator::Schema::Constants;
 use SQL::Translator::Utils qw(debug);
 
 our $DEBUG;
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 $DEBUG   = 0 unless defined $DEBUG;
 
 use constant VALID_FONT_SIZE => {
index f9415fa..843b012 100644 (file)
@@ -41,7 +41,7 @@ use Template;
 
 use Data::Dumper;
 
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 sub produce {
     my $t              = shift;
index 1187df4..16013a9 100644 (file)
@@ -230,7 +230,7 @@ use SQL::Translator::Utils qw(debug);
 use Scalar::Util qw/openhandle/;
 
 our $DEBUG;
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 $DEBUG   = 0 unless defined $DEBUG;
 
 sub produce {
index df9a607..fa4a382 100644 (file)
@@ -4,7 +4,7 @@ use strict;
 use warnings;
 use Data::Dumper;
 
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 our $NAME = __PACKAGE__;
 our $NOWRAP = 0 unless defined $NOWRAP;
 our $NOLINKTABLE = 0 unless defined $NOLINKTABLE;
index 3adb6f4..dbb893b 100644 (file)
@@ -18,7 +18,7 @@ This module serializes a schema to a JSON string.
 
 use strict;
 use warnings;
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 use JSON::MaybeXS 'to_json';
 
index 836e1e6..4358d84 100644 (file)
@@ -34,7 +34,7 @@ use strict;
 use warnings;
 
 our @EXPORT_OK;
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 use SQL::Translator::Utils 'debug';
 
index 5106dfb..3c5d45a 100644 (file)
@@ -82,7 +82,7 @@ Set the fields character set and collation order.
 use strict;
 use warnings;
 our ( $DEBUG, %used_names );
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 $DEBUG   = 0 unless defined $DEBUG;
 
 # Maximum length for most identifiers is 64, according to:
index e733197..6b940f4 100644 (file)
@@ -90,7 +90,7 @@ context the slash will be still there to ensure compatibility with SQLPlus.
 use strict;
 use warnings;
 our ( $DEBUG, $WARN );
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 $DEBUG   = 0 unless defined $DEBUG;
 
 use base 'SQL::Translator::Producer';
index 4d0490c..e655385 100644 (file)
@@ -22,7 +22,7 @@ interesting formats using Pod::POM or Template::Toolkit's POD plugin.
 
 use strict;
 use warnings;
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 use SQL::Translator::Schema::Constants;
 use SQL::Translator::Utils qw(header_comment);
index 8f6c663..ccbd8c2 100644 (file)
@@ -22,7 +22,7 @@ Does not yet support PostGIS Views.
 use strict;
 use warnings;
 our ( $DEBUG, $WARN );
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 $DEBUG = 0 unless defined $DEBUG;
 
 use base qw(SQL::Translator::Producer);
index ca21ba1..6c9d21b 100644 (file)
@@ -3,7 +3,7 @@ package SQL::Translator::Producer::SQLServer;
 use strict;
 use warnings;
 our ( $DEBUG, $WARN );
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 $DEBUG = 1 unless defined $DEBUG;
 
 use SQL::Translator::Schema::Constants;
index e5d78b8..36ca5ca 100644 (file)
@@ -25,7 +25,7 @@ use SQL::Translator::Utils qw(debug header_comment parse_dbms_version batch_alte
 use SQL::Translator::Generator::DDL::SQLite;
 
 our ( $DEBUG, $WARN );
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 $DEBUG = 0 unless defined $DEBUG;
 $WARN = 0 unless defined $WARN;
 
index 7e31e83..773462b 100644 (file)
@@ -25,7 +25,7 @@ use strict;
 use warnings;
 our ( $DEBUG, @EXPORT_OK );
 $DEBUG = 0 unless defined $DEBUG;
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 use Storable;
 use Exporter;
index f05628d..06b06a4 100644 (file)
@@ -20,7 +20,7 @@ This module will produce text output of the schema suitable for Sybase.
 use strict;
 use warnings;
 our ( $DEBUG, $WARN );
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 $DEBUG = 1 unless defined $DEBUG;
 
 use Data::Dumper;
index 72a56e4..4c03728 100644 (file)
@@ -13,7 +13,7 @@ use strict;
 use warnings;
 
 our @EXPORT_OK;
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 use Template;
 use Data::Dumper;
index 8f14c90..9e5c1de 100644 (file)
@@ -157,7 +157,7 @@ use strict;
 use warnings;
 
 our ( $DEBUG, @EXPORT_OK );
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 $DEBUG   = 0 unless defined $DEBUG;
 
 use File::Path;
index 82da277..7617dac 100644 (file)
@@ -110,7 +110,7 @@ use strict;
 use warnings;
 
 our ( $DEBUG, @EXPORT_OK );
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 $DEBUG   = 0 unless defined $DEBUG;
 
 use Template;
index c1a1055..02f6413 100644 (file)
@@ -25,7 +25,7 @@ Ken Youens-Clark E<lt>kclark@cpan.orgE<gt>.
 use strict;
 use warnings;
 our $DEBUG;
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 $DEBUG = 1 unless defined $DEBUG;
 
 use SQL::Translator::Producer::XML::SQLFairy;
index 729b2a1..b3350f7 100644 (file)
@@ -143,7 +143,7 @@ To convert your old format files simply pass them through the translator :)
 use strict;
 use warnings;
 our @EXPORT_OK;
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 use Exporter;
 use base qw(Exporter);
index e419ddd..ea4e8af 100644 (file)
@@ -21,7 +21,7 @@ takes a long time.
 
 use strict;
 use warnings;
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 use YAML qw(Dump);
 
index bf60d42..728b23a 100644 (file)
@@ -39,7 +39,7 @@ use Carp;
 
 extends 'SQL::Translator::Schema::Object';
 
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 
 has _order => (is => 'ro', default => quote_sub(q{ +{ map { $_ => 0 } qw/
index a298e54..52fc361 100644 (file)
@@ -43,7 +43,7 @@ use strict;
 use warnings;
 use base qw( Exporter );
 require Exporter;
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 our @EXPORT = qw[
     CHECK_C
index 0d0be61..7490bac 100644 (file)
@@ -32,7 +32,7 @@ use Sub::Quote qw(quote_sub);
 
 extends 'SQL::Translator::Schema::Object';
 
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 my %VALID_CONSTRAINT_TYPE = (
     PRIMARY_KEY, 1,
index 59597a2..497bd8f 100644 (file)
@@ -31,7 +31,7 @@ use Scalar::Util ();
 
 extends 'SQL::Translator::Schema::Object';
 
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 # Stringify to our name, being careful not to pass any args through so we don't
 # accidentally set it to undef. We also have to tweak bool so the object is
index a37bea8..d54ce4d 100644 (file)
@@ -34,7 +34,7 @@ use Sub::Quote qw(quote_sub);
 
 extends 'SQL::Translator::Schema::Object';
 
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 my %VALID_INDEX_TYPE = (
   UNIQUE         => 1,
index f006ca6..ae4ff0f 100644 (file)
@@ -41,7 +41,7 @@ equality.
 use Moo 1.000003;
 
 # screw you PAUSE
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 with qw(
   SQL::Translator::Role::Error
index 97e55cb..8fa1742 100644 (file)
@@ -35,7 +35,7 @@ use Sub::Quote qw(quote_sub);
 
 extends 'SQL::Translator::Schema::Object';
 
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 =head2 new
 
index aea8f55..f2ff231 100644 (file)
@@ -34,7 +34,7 @@ use Sub::Quote qw(quote_sub);
 
 extends 'SQL::Translator::Schema::Object';
 
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 # Stringify to our name, being careful not to pass any args through so we don't
 # accidentally set it to undef. We also have to tweak bool so the object is
index 4eecdf3..755b332 100644 (file)
@@ -35,7 +35,7 @@ use Sub::Quote qw(quote_sub);
 
 extends 'SQL::Translator::Schema::Object';
 
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 =head2 new
 
index 109a0f3..9ac8e29 100644 (file)
@@ -31,7 +31,7 @@ use Sub::Quote qw(quote_sub);
 
 extends 'SQL::Translator::Schema::Object';
 
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 =head2 new
 
index d86d988..17c0777 100644 (file)
@@ -8,7 +8,7 @@ use Scalar::Util qw(blessed);
 use Try::Tiny;
 use Carp qw(carp croak);
 
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 
 use base qw(Exporter);
 our @EXPORT_OK = qw(
index 834b118..d3d708b 100644 (file)
@@ -15,7 +15,7 @@ use SQL::Translator::Schema::Constants;
 
 use base qw(Exporter);
 our @EXPORT_OK;
-our $VERSION = '1.60';
+our $VERSION = '1.61';
 our @EXPORT = qw(
     schema_ok
     table_ok
index 2bfccbe..e224c9f 100755 (executable)
@@ -153,7 +153,7 @@ use Pod::Usage;
 use SQL::Translator;
 
 use vars qw( $VERSION );
-$VERSION = '1.60';
+$VERSION = '1.61';
 
 my $from;             # the original database
 my $to;               # the destination database
index 58127ee..25e9182 100755 (executable)
@@ -77,7 +77,7 @@ use Pod::Usage;
 use SQL::Translator;
 
 use vars '$VERSION';
-$VERSION = '1.60';
+$VERSION = '1.61';
 
 #
 # Get arguments.
index bd267e3..9c99ac3 100755 (executable)
@@ -114,7 +114,7 @@ use SQL::Translator::Diff;
 use SQL::Translator::Schema::Constants;
 
 use vars qw( $VERSION );
-$VERSION = '1.60';
+$VERSION = '1.61';
 
 my ( @input, $list, $help, $debug, $trace, $caseopt, $ignore_index_names,
     $ignore_constraint_names, $output_db, $mysql_parser_version,
index a094e56..7a9b6d3 100755 (executable)
@@ -96,7 +96,7 @@ use SQL::Translator;
 use SQL::Translator::Schema::Constants;
 
 use vars qw( $VERSION );
-$VERSION = '1.60';
+$VERSION = '1.61';
 
 my ( @input, $list, $help, $debug );
 for my $arg ( @ARGV ) {
index 6bcf393..0a16e0d 100755 (executable)
@@ -63,7 +63,7 @@ use SQL::Translator;
 use File::Basename qw(basename);
 
 use vars '$VERSION';
-$VERSION = '1.60';
+$VERSION = '1.61';
 
 my ( $help, $db, $skip, $skiplike, $db_user, $db_pass, $dsn );
 GetOptions(
index 2c1ba2e..4b562a4 100755 (executable)
@@ -108,7 +108,7 @@ use Pod::Usage;
 use SQL::Translator;
 
 use vars '$VERSION';
-$VERSION = '1.60';
+$VERSION = '1.61';
 
 #
 # Get arguments.
index 4e0710c..e885c29 100755 (executable)
@@ -38,7 +38,7 @@ use CGI;
 use SQL::Translator;
 
 use vars '$VERSION';
-$VERSION = '1.60';
+$VERSION = '1.61';
 
 my $q = CGI->new;