From: Ash Berlin Date: Tue, 19 Aug 2008 15:18:33 +0000 (+0000) Subject: svk-commitdCGXq.tmp X-Git-Tag: v0.11008~306 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c6e5ac689945620dd005a17dda3ba891104f5de1;p=dbsrgits%2FSQL-Translator.git svk-commitdCGXq.tmp --- diff --git a/Changes b/Changes index 7174cdf..6196c3e 100644 --- a/Changes +++ b/Changes @@ -1,4 +1,7 @@ +# ---------------------------------------------------------- +# 0.09001 2008-08-19 +# ---------------------------------------------------------- * Added support for CREATE VIEW + tests in the mysql producer (groditi) * Added support for SET fields in the mysql producer + test (groditi) * Added support for proper booleans in the mysql producer, when a mysql version of at least 4.x is supplied @@ -6,7 +9,7 @@ * Added support to truncate long constraint and index names in the mysql producer, because of a change to DBIx::Class to produce such long names in some cases. # ---------------------------------------------------------- -# 0.0900 2008-02-25 +# 0.09000 2008-02-25 # ---------------------------------------------------------- * Fix Pg produces idea of which field types need a size param diff --git a/META.yml b/META.yml index 72c1613..e73af95 100644 --- a/META.yml +++ b/META.yml @@ -1,6 +1,6 @@ --- name: SQL-Translator -version: 0.09000 +version: 0.09001 author: - 'Ken Y. Clark ' abstract: SQL DDL transformations and more @@ -13,6 +13,7 @@ requires: Class::Data::Inheritable: 0.02 Class::MakeMethods: 0 DBI: 0 + Digest::SHA1: 2 IO::Dir: 0 Log::Log4perl: 0 Parse::RecDescent: 1.94 @@ -41,7 +42,7 @@ provides: file: lib/SQL/Translator/Parser/DB2/Grammar.pm SQL::Translator: file: lib/SQL/Translator.pm - version: 0.09000 + version: 0.09001 SQL::Translator::Diff: file: lib/SQL/Translator/Diff.pm SQL::Translator::Filter::DefaultExtra: diff --git a/lib/SQL/Translator.pm b/lib/SQL/Translator.pm index a4b6933..85021b4 100644 --- a/lib/SQL/Translator.pm +++ b/lib/SQL/Translator.pm @@ -26,7 +26,7 @@ use base 'Class::Base'; require 5.004; -$VERSION = '0.09000'; +$VERSION = '0.09001'; $REVISION = sprintf "%d.%02d", q$Revision: 1.73 $ =~ /(\d+)\.(\d+)/; $DEBUG = 0 unless defined $DEBUG; $ERROR = "";