From: Peter Rabbitson Date: Sat, 30 May 2009 16:35:46 +0000 (+0000) Subject: Release 1.56 X-Git-Tag: v1.70~151 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a120d3e36718b1c4104d96848239e0a26a0d0644;p=dbsrgits%2FSQL-Abstract.git Release 1.56 --- diff --git a/Changes b/Changes index e1c4dff..1d37352 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,10 @@ Revision history for SQL::Abstract +revision 1.56 2009-05-30 16:31 (UTC) +---------------------------- + - support for \[$sql, @bind] in order_by clauses e.g.: + { -desc => \['colA LIKE ?', 'somestring'] } + revision 1.55 2009-05-17 22:54 (UTC) ---------------------------- - make sure that sql generation does not mutate the supplied diff --git a/lib/SQL/Abstract.pm b/lib/SQL/Abstract.pm index 7a6748e..d7eddfb 100644 --- a/lib/SQL/Abstract.pm +++ b/lib/SQL/Abstract.pm @@ -15,7 +15,7 @@ use Scalar::Util qw/blessed/; # GLOBALS #====================================================================== -our $VERSION = '1.55'; +our $VERSION = '1.56'; # This would confuse some packagers #$VERSION = eval $VERSION; # numify for warning-free dev releases