From: Peter Rabbitson Date: Fri, 17 Jan 2014 03:15:39 +0000 (+0100) Subject: First cut of a DQ-SQLA trial X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=71c18fce003e5ad1c91c2d9169cbf7909d69d48e;p=dbsrgits%2FSQL-Abstract.git First cut of a DQ-SQLA trial --- diff --git a/Changes b/Changes index 6ed2899..154fb2b 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for SQL::Abstract +TRIAL revision 1.99_01 2014-01-17 +---------------------------- + - First cut of Data::Query-based SQLA for wider testing + revision 1.77 2014-01-17 ---------------------------- - Reintroduce { -not => undef } column operator (regression from 1.75) diff --git a/lib/SQL/Abstract.pm b/lib/SQL/Abstract.pm index fd9cb55..cffe6d8 100644 --- a/lib/SQL/Abstract.pm +++ b/lib/SQL/Abstract.pm @@ -9,7 +9,9 @@ use Module::Runtime qw(use_module); use Moo; use namespace::clean; -our $VERSION = '1.77'; +# DO NOT INCREMENT TO 2.0 WITHOUT COORDINATING WITH mst OR ribasushi + our $VERSION = '1.99_01'; +# DO NOT INCREMENT TO 2.0 WITHOUT COORDINATING WITH mst OR ribasushi # This would confuse some packagers $VERSION = eval $VERSION if $VERSION =~ /_/; # numify for warning-free dev releases