From 2c39859277de3040279433afeab5f03767df9ada Mon Sep 17 00:00:00 2001 From: Keita Jamadam Sugama Date: Wed, 23 Oct 2024 04:39:22 +0000 Subject: [PATCH] Checking in changes prior to tagging of version 0.23. Changelog diff is: diff --git a/Changes b/Changes index 4232ffa..81b7eca 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ {{$NEXT}} +0.23 2024-10-23T04:39:20Z + - Introduce as_escape method to D::OD::SQL to allow specifying escape clause #45 + 0.22 2023-02-01T05:14:13Z - Clear %Handle cache if dbh is set to undef #42 - Skip fork test on win32 #41 --- Changes | 3 +++ META.json | 7 ++++--- lib/Data/ObjectDriver.pm | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Changes b/Changes index 4232ffa..81b7eca 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ {{$NEXT}} +0.23 2024-10-23T04:39:20Z + - Introduce as_escape method to D::OD::SQL to allow specifying escape clause #45 + 0.22 2023-02-01T05:14:13Z - Clear %Handle cache if dbh is set to undef #42 - Skip fork test on win32 #41 diff --git a/META.json b/META.json index 934a621..f166f30 100644 --- a/META.json +++ b/META.json @@ -4,7 +4,7 @@ "& COPYRIGHT" ], "dynamic_config" : 0, - "generated_by" : "Minilla/v3.1.20, CPAN::Meta::Converter version 2.150010", + "generated_by" : "Minilla/v3.1.25, CPAN::Meta::Converter version 2.150010", "license" : [ "perl_5" ], @@ -141,7 +141,7 @@ "web" : "https://github.com/sixapart/data-objectdriver" } }, - "version" : "0.22", + "version" : "0.23", "x_authority" : "cpan:SIXAPART", "x_contributors" : [ "Adam Thomason ", @@ -154,6 +154,7 @@ "Garth Webb ", "Graham Blankenbaker ", "Jonathan Steinert ", + "Keita Jamadam Sugama ", "Kenichi Ishigaki ", "Kevin Goess ", "Mark Paschal ", @@ -174,6 +175,6 @@ "ambs ", "ziguzagu " ], - "x_serialization_backend" : "JSON::PP version 4.06", + "x_serialization_backend" : "JSON::PP version 4.16", "x_static_install" : 1 } diff --git a/lib/Data/ObjectDriver.pm b/lib/Data/ObjectDriver.pm index a85e6f5..9512a15 100644 --- a/lib/Data/ObjectDriver.pm +++ b/lib/Data/ObjectDriver.pm @@ -11,7 +11,7 @@ use Data::ObjectDriver::Iterator; __PACKAGE__->mk_accessors(qw( pk_generator txn_active )); -our $VERSION = '0.22'; +our $VERSION = '0.23'; our $DEBUG = $ENV{DOD_DEBUG} || 0; our $PROFILE = $ENV{DOD_PROFILE} || 0; our $PROFILER;