From: Norbert Buchmuller Date: Tue, 10 Mar 2009 12:11:28 +0000 (+0000) Subject: Bumped version number to 1.49_05 and updated Changes. X-Git-Tag: v1.70~214 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e9c9f6ee127e383a5ed2ad8bb4d8528f86218c63;p=dbsrgits%2FSQL-Abstract.git Bumped version number to 1.49_05 and updated Changes. --- diff --git a/Changes b/Changes index edfb34d..9b752e8 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,16 @@ Revision history for SQL::Abstract +revision 1.59_04 2009-03-10 + - fixed the problem with values() not behaving the same as the rest of the code (RT#43483) + - fixed interjecting arrayrefref into a where clause + - added value-only insert test with a literal SQL snippet + - cleanup and enhancement of t/03values.t + - better handling of borked SQL in tests + - deal properly with parentheses in is_same_sql_bind() + - fixed test subs (is_same_*) in SQL::Abstract::Test to return the correct test value + - do not version MANIFEST + +---------------------------- revision 1.49_04 2009-03-03 - add support for a [\%column_meta => value] bind value format diff --git a/lib/SQL/Abstract.pm b/lib/SQL/Abstract.pm index 90434b8..55acc78 100644 --- a/lib/SQL/Abstract.pm +++ b/lib/SQL/Abstract.pm @@ -15,7 +15,7 @@ use Scalar::Util qw/blessed/; # GLOBALS #====================================================================== -our $VERSION = '1.49_04'; +our $VERSION = '1.49_05'; $VERSION = eval $VERSION; # numify for warning-free dev releases