Bumping version to 1.59_01
Dagfinn Ilmari Mannsåker [Sun, 28 Apr 2019 14:08:52 +0000 (15:08 +0100)]
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 8b89134..b2c5440 100644 (file)
@@ -3,7 +3,7 @@ package SQL::Translator;
 use Moo;
 our ( $DEFAULT_SUB, $DEBUG, $ERROR );
 
-our $VERSION  = '1.59';
+our $VERSION  = '1.59_01';
 $VERSION =~ tr/_//d;
 $DEBUG    = 0 unless defined $DEBUG;
 $ERROR    = "";
index dcef12e..a8cf4f1 100644 (file)
@@ -33,7 +33,7 @@ objects.
 
 use strict;
 use warnings;
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 sub filter {
     my $schema = shift;
index f4de7fa..7327fa8 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.59';
+our $VERSION = '1.59_01';
 
 sub filter {
     my $schema = shift;
index 71ff6a9..fce1359 100644 (file)
@@ -29,7 +29,7 @@ SQL::Translator::Filter::Names - Tweak the names of schema objects.
 
 use strict;
 use warnings;
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 sub filter {
     my $schema = shift;
index 4c1a925..650adcd 100644 (file)
@@ -2,7 +2,7 @@ package SQL::Translator::Parser;
 
 use strict;
 use warnings;
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 sub parse { "" }
 
index bd51ec9..bbefdb9 100644 (file)
@@ -22,7 +22,7 @@ something similar to the output of mdbtools (http://mdbtools.sourceforge.net/).
 use strict;
 use warnings;
 
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 our $DEBUG;
 $DEBUG = 0 unless defined $DEBUG;
index 73a73bc..43e5bb3 100644 (file)
@@ -102,7 +102,7 @@ use strict;
 use warnings;
 use DBI;
 our @EXPORT;
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 use constant DRIVERS => {
     mysql            => 'MySQL',
index 2017928..96659cb 100644 (file)
@@ -23,7 +23,7 @@ use SQL::Translator::Parser::DB2;
 use SQL::Translator::Schema::Constants;
 
 our ($DEBUG, $VERSION, @EXPORT_OK );
-# $VERSION = '1.59';
+# $VERSION = '1.59_01';
 $DEBUG   = 0 unless defined $DEBUG;
 
 sub parse {
index eea9522..1ad034d 100644 (file)
@@ -24,7 +24,7 @@ use SQL::Translator::Schema::Constants;
 use SQL::Translator::Parser::MySQL;
 
 our ( $DEBUG, @EXPORT_OK );
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 $DEBUG   = 0 unless defined $DEBUG;
 
 sub parse {
index 4c33c96..81357c7 100644 (file)
@@ -22,7 +22,7 @@ use SQL::Translator::Schema::Table;
 use SQL::Translator::Schema::Field;
 use SQL::Translator::Schema::Constraint;
 
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 sub parse {
     my ( $tr, $dbh ) = @_;
index 28017a6..de67612 100644 (file)
@@ -21,7 +21,7 @@ use Data::Dumper;
 use SQL::Translator::Schema::Constants;
 
 our ( $DEBUG, @EXPORT_OK );
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 $DEBUG   = 0 unless defined $DEBUG;
 
 my $actions = {c => 'cascade',
index dba7298..f23abf3 100644 (file)
@@ -21,7 +21,7 @@ use SQL::Translator::Schema;
 use Data::Dumper;
 
 our ( $DEBUG, @EXPORT_OK );
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 $DEBUG   = 0 unless defined $DEBUG;
 
 no strict 'refs';
index 6d475da..31eaa87 100644 (file)
@@ -26,7 +26,7 @@ use SQL::Translator::Parser::SQLite;
 use Data::Dumper;
 
 our ( $DEBUG, @EXPORT_OK );
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 $DEBUG   = 0 unless defined $DEBUG;
 
 sub parse {
index f3bfe74..167167c 100644 (file)
@@ -21,7 +21,7 @@ use SQL::Translator::Schema;
 use Data::Dumper;
 
 our ( $DEBUG, @EXPORT_OK );
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 $DEBUG   = 0 unless defined $DEBUG;
 
 no strict 'refs';
index 846095a..e42ece1 100644 (file)
@@ -32,7 +32,7 @@ use strict;
 use warnings;
 our ($DEBUG, @EXPORT_OK);
 $DEBUG = 0 unless defined $DEBUG;
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 use Spreadsheet::ParseExcel;
 use Exporter;
index 7448fd4..785829b 100644 (file)
@@ -2,7 +2,7 @@ package SQL::Translator::Parser::JSON;
 
 use strict;
 use warnings;
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 use SQL::Translator::Schema;
 use SQL::Translator::Utils qw(header_comment);
index c915af5..8c3e81a 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.59';
+our $VERSION = '1.59_01';
 
 our $DEBUG;
 $DEBUG   = 0 unless defined $DEBUG;
index 12e7fdf..08f915b 100644 (file)
@@ -78,7 +78,7 @@ was altered to better handle the syntax created by DDL::Oracle.
 use strict;
 use warnings;
 
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 our $DEBUG;
 $DEBUG   = 0 unless defined $DEBUG;
index d77a31f..6b50e1d 100644 (file)
@@ -89,7 +89,7 @@ View table:
 use strict;
 use warnings;
 
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 our $DEBUG;
 $DEBUG   = 0 unless defined $DEBUG;
index c4191fd..72eca67 100644 (file)
@@ -19,7 +19,7 @@ should probably be considered a work in progress.
 use strict;
 use warnings;
 
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 our $DEBUG;
 $DEBUG   = 0 unless defined $DEBUG;
index 251c97b..dd21b89 100644 (file)
@@ -133,7 +133,7 @@ like-op::=
 use strict;
 use warnings;
 
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 our $DEBUG;
 $DEBUG   = 0 unless defined $DEBUG;
index 0cc3194..2feed9d 100644 (file)
@@ -21,7 +21,7 @@ the data into a database tables or graphs.
 
 use strict;
 use warnings;
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 our $DEBUG;
 $DEBUG = 0 unless defined $DEBUG;
index e3fd943..a058a9c 100644 (file)
@@ -20,7 +20,7 @@ DBI-Sybase parser included with SQL::Translator.
 use strict;
 use warnings;
 
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 our $DEBUG;
 $DEBUG   = 0 unless defined $DEBUG;
index 26b1981..5c4eba1 100644 (file)
@@ -23,7 +23,7 @@ Ken Y. Clark E<lt>kclark@cpan.orgE<gt>.
 use strict;
 use warnings;
 our $DEBUG;
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 $DEBUG = 1 unless defined $DEBUG;
 
 use SQL::Translator::Parser::XML::SQLFairy;
index 14d98b1..6de1dcf 100644 (file)
@@ -79,7 +79,7 @@ use strict;
 use warnings;
 
 our ( $DEBUG, @EXPORT_OK );
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 $DEBUG   = 0 unless defined $DEBUG;
 
 use Data::Dumper;
index 462ddcd..9ad08eb 100644 (file)
@@ -2,7 +2,7 @@ package SQL::Translator::Parser::YAML;
 
 use strict;
 use warnings;
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 use SQL::Translator::Schema;
 use SQL::Translator::Utils qw(header_comment);
index 3e199b2..894e700 100644 (file)
@@ -46,7 +46,7 @@ C<SQL::Translator::Utils::normalize_name>.
 use strict;
 use warnings;
 our @EXPORT;
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 use Exporter;
 use Text::ParseWords qw(quotewords);
index 94a3d43..12acf2c 100644 (file)
@@ -3,7 +3,7 @@ package SQL::Translator::Producer;
 use strict;
 use warnings;
 use Scalar::Util ();
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 sub produce { "" }
 
index 4d26ee4..e499561 100644 (file)
@@ -3,7 +3,7 @@ package SQL::Translator::Producer::ClassDBI;
 use strict;
 use warnings;
 our $DEBUG;
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 $DEBUG = 1 unless defined $DEBUG;
 
 use SQL::Translator::Schema::Constants;
index 051877f..c9c4cad 100644 (file)
@@ -21,7 +21,7 @@ use warnings;
 use strict;
 use warnings;
 our ( $DEBUG, $WARN );
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 $DEBUG   = 0 unless defined $DEBUG;
 
 use SQL::Translator::Schema::Constants;
index cdb2581..a6457d9 100644 (file)
@@ -34,7 +34,7 @@ use strict;
 use warnings;
 
 our ( $DEBUG, @EXPORT_OK );
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 $DEBUG   = 0 unless defined $DEBUG;
 
 use File::ShareDir qw/dist_dir/;
index a12556b..6f39bc7 100644 (file)
@@ -47,7 +47,7 @@ use SQL::Translator::Schema::Constants;
 use SQL::Translator::Utils qw(debug);
 
 our $DEBUG;
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 $DEBUG   = 0 unless defined $DEBUG;
 
 use constant VALID_FONT_SIZE => {
index 0a24cd6..6cd9c12 100644 (file)
@@ -41,7 +41,7 @@ use Template;
 
 use Data::Dumper;
 
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 sub produce {
     my $t              = shift;
index 3b8ef59..9cc46ae 100644 (file)
@@ -230,7 +230,7 @@ use SQL::Translator::Utils qw(debug);
 use Scalar::Util qw/openhandle/;
 
 our $DEBUG;
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 $DEBUG   = 0 unless defined $DEBUG;
 
 sub produce {
index dad440d..5adc589 100644 (file)
@@ -4,7 +4,7 @@ use strict;
 use warnings;
 use Data::Dumper;
 
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 our $NAME = __PACKAGE__;
 our $NOWRAP = 0 unless defined $NOWRAP;
 our $NOLINKTABLE = 0 unless defined $NOLINKTABLE;
index 7e37194..146e534 100644 (file)
@@ -18,7 +18,7 @@ This module serializes a schema to a JSON string.
 
 use strict;
 use warnings;
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 use JSON::MaybeXS 'to_json';
 
index 5d4b3dc..9e41c55 100644 (file)
@@ -34,7 +34,7 @@ use strict;
 use warnings;
 
 our @EXPORT_OK;
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 use SQL::Translator::Utils 'debug';
 
index ff75606..923de6f 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.59';
+our $VERSION = '1.59_01';
 $DEBUG   = 0 unless defined $DEBUG;
 
 # Maximum length for most identifiers is 64, according to:
index 929fc8e..3363e93 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.59';
+our $VERSION = '1.59_01';
 $DEBUG   = 0 unless defined $DEBUG;
 
 use base 'SQL::Translator::Producer';
index 17c378a..23ac6af 100644 (file)
@@ -22,7 +22,7 @@ interesting formats using Pod::POM or Template::Toolkit's POD plugin.
 
 use strict;
 use warnings;
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 use SQL::Translator::Schema::Constants;
 use SQL::Translator::Utils qw(header_comment);
index 455f745..6b5b606 100644 (file)
@@ -22,7 +22,7 @@ Does not yet support PostGIS Views.
 use strict;
 use warnings;
 our ( $DEBUG, $WARN );
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 $DEBUG = 0 unless defined $DEBUG;
 
 use base qw(SQL::Translator::Producer);
index ed9d156..3d7cbb3 100644 (file)
@@ -3,7 +3,7 @@ package SQL::Translator::Producer::SQLServer;
 use strict;
 use warnings;
 our ( $DEBUG, $WARN );
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 $DEBUG = 1 unless defined $DEBUG;
 
 use SQL::Translator::Schema::Constants;
index ffbbbe0..82efe36 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.59';
+our $VERSION = '1.59_01';
 $DEBUG = 0 unless defined $DEBUG;
 $WARN = 0 unless defined $WARN;
 
index 4113690..44f7659 100644 (file)
@@ -25,7 +25,7 @@ use strict;
 use warnings;
 our ( $DEBUG, @EXPORT_OK );
 $DEBUG = 0 unless defined $DEBUG;
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 use Storable;
 use Exporter;
index fec655a..529e62c 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.59';
+our $VERSION = '1.59_01';
 $DEBUG = 1 unless defined $DEBUG;
 
 use Data::Dumper;
index 3a6105c..59f35d2 100644 (file)
@@ -13,7 +13,7 @@ use strict;
 use warnings;
 
 our @EXPORT_OK;
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 use Template;
 use Data::Dumper;
index 799ca54..2da45c5 100644 (file)
@@ -157,7 +157,7 @@ use strict;
 use warnings;
 
 our ( $DEBUG, @EXPORT_OK );
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 $DEBUG   = 0 unless defined $DEBUG;
 
 use File::Path;
index 36f62b6..9b5a3ff 100644 (file)
@@ -110,7 +110,7 @@ use strict;
 use warnings;
 
 our ( $DEBUG, @EXPORT_OK );
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 $DEBUG   = 0 unless defined $DEBUG;
 
 use Template;
index 584690f..e4bff98 100644 (file)
@@ -25,7 +25,7 @@ Ken Youens-Clark E<lt>kclark@cpan.orgE<gt>.
 use strict;
 use warnings;
 our $DEBUG;
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 $DEBUG = 1 unless defined $DEBUG;
 
 use SQL::Translator::Producer::XML::SQLFairy;
index ce9e151..ab1040b 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.59';
+our $VERSION = '1.59_01';
 
 use Exporter;
 use base qw(Exporter);
index e7a8dc1..fa00b65 100644 (file)
@@ -21,7 +21,7 @@ takes a long time.
 
 use strict;
 use warnings;
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 use YAML qw(Dump);
 
index e024b8b..a52d10e 100644 (file)
@@ -39,7 +39,7 @@ use Carp;
 
 extends 'SQL::Translator::Schema::Object';
 
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 
 has _order => (is => 'ro', default => quote_sub(q{ +{ map { $_ => 0 } qw/
index e56e062..955fee1 100644 (file)
@@ -43,7 +43,7 @@ use strict;
 use warnings;
 use base qw( Exporter );
 require Exporter;
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 our @EXPORT = qw[
     CHECK_C
index 7742bf7..904e1aa 100644 (file)
@@ -32,7 +32,7 @@ use Sub::Quote qw(quote_sub);
 
 extends 'SQL::Translator::Schema::Object';
 
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 my %VALID_CONSTRAINT_TYPE = (
     PRIMARY_KEY, 1,
index a882632..96ebad9 100644 (file)
@@ -31,7 +31,7 @@ use Scalar::Util ();
 
 extends 'SQL::Translator::Schema::Object';
 
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 # 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 5363745..811cafb 100644 (file)
@@ -34,7 +34,7 @@ use Sub::Quote qw(quote_sub);
 
 extends 'SQL::Translator::Schema::Object';
 
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 my %VALID_INDEX_TYPE = (
   UNIQUE         => 1,
index 8d08a1f..2e77dff 100644 (file)
@@ -41,7 +41,7 @@ equality.
 use Moo 1.000003;
 
 # screw you PAUSE
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 with qw(
   SQL::Translator::Role::Error
index 7236f22..cd7340e 100644 (file)
@@ -35,7 +35,7 @@ use Sub::Quote qw(quote_sub);
 
 extends 'SQL::Translator::Schema::Object';
 
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 =head2 new
 
index 789b9a1..17caff7 100644 (file)
@@ -34,7 +34,7 @@ use Sub::Quote qw(quote_sub);
 
 extends 'SQL::Translator::Schema::Object';
 
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 # 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 d915e59..4b9e93e 100644 (file)
@@ -35,7 +35,7 @@ use Sub::Quote qw(quote_sub);
 
 extends 'SQL::Translator::Schema::Object';
 
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 =head2 new
 
index c5b9920..065854c 100644 (file)
@@ -31,7 +31,7 @@ use Sub::Quote qw(quote_sub);
 
 extends 'SQL::Translator::Schema::Object';
 
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 
 =head2 new
 
index ccc7ad3..d487173 100644 (file)
@@ -8,7 +8,7 @@ use Scalar::Util qw(blessed);
 use Try::Tiny;
 use Carp qw(carp croak);
 
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 our $DEFAULT_COMMENT = '-- ';
 
 use base qw(Exporter);
index 0181156..83d25e8 100644 (file)
@@ -15,7 +15,7 @@ use SQL::Translator::Schema::Constants;
 
 use base qw(Exporter);
 our @EXPORT_OK;
-our $VERSION = '1.59';
+our $VERSION = '1.59_01';
 our @EXPORT = qw(
     schema_ok
     table_ok
index 35ad53f..1667c95 100755 (executable)
@@ -153,7 +153,7 @@ use Pod::Usage;
 use SQL::Translator;
 
 use vars qw( $VERSION );
-$VERSION = '1.59';
+$VERSION = '1.59_01';
 
 my $from;             # the original database
 my $to;               # the destination database
index 8c70373..52b45bb 100755 (executable)
@@ -77,7 +77,7 @@ use Pod::Usage;
 use SQL::Translator;
 
 use vars '$VERSION';
-$VERSION = '1.59';
+$VERSION = '1.59_01';
 
 #
 # Get arguments.
index 5cfb66f..4e2944d 100755 (executable)
@@ -114,7 +114,7 @@ use SQL::Translator::Diff;
 use SQL::Translator::Schema::Constants;
 
 use vars qw( $VERSION );
-$VERSION = '1.59';
+$VERSION = '1.59_01';
 
 my ( @input, $list, $help, $debug, $trace, $caseopt, $ignore_index_names,
     $ignore_constraint_names, $output_db, $mysql_parser_version,
index 2ca3d30..36a9e90 100755 (executable)
@@ -96,7 +96,7 @@ use SQL::Translator;
 use SQL::Translator::Schema::Constants;
 
 use vars qw( $VERSION );
-$VERSION = '1.59';
+$VERSION = '1.59_01';
 
 my ( @input, $list, $help, $debug );
 for my $arg ( @ARGV ) {
index 0046df3..c12f008 100755 (executable)
@@ -63,7 +63,7 @@ use SQL::Translator;
 use File::Basename qw(basename);
 
 use vars '$VERSION';
-$VERSION = '1.59';
+$VERSION = '1.59_01';
 
 my ( $help, $db, $skip, $skiplike, $db_user, $db_pass, $dsn );
 GetOptions(
index 137b363..f0d47e0 100755 (executable)
@@ -108,7 +108,7 @@ use Pod::Usage;
 use SQL::Translator;
 
 use vars '$VERSION';
-$VERSION = '1.59';
+$VERSION = '1.59_01';
 
 #
 # Get arguments.
index 4b21787..ce29354 100755 (executable)
@@ -38,7 +38,7 @@ use CGI;
 use SQL::Translator;
 
 use vars '$VERSION';
-$VERSION = '1.59';
+$VERSION = '1.59_01';
 
 my $q = CGI->new;