Skip to content

Commit 2c39859

Browse files
committed
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
1 parent e3ffb0a commit 2c39859

3 files changed

Lines changed: 8 additions & 4 deletions

File tree

Changes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{{$NEXT}}
22

3+
0.23 2024-10-23T04:39:20Z
4+
- Introduce as_escape method to D::OD::SQL to allow specifying escape clause #45
5+
36
0.22 2023-02-01T05:14:13Z
47
- Clear %Handle cache if dbh is set to undef #42
58
- Skip fork test on win32 #41

META.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"& COPYRIGHT"
55
],
66
"dynamic_config" : 0,
7-
"generated_by" : "Minilla/v3.1.20, CPAN::Meta::Converter version 2.150010",
7+
"generated_by" : "Minilla/v3.1.25, CPAN::Meta::Converter version 2.150010",
88
"license" : [
99
"perl_5"
1010
],
@@ -141,7 +141,7 @@
141141
"web" : "https://github.com/sixapart/data-objectdriver"
142142
}
143143
},
144-
"version" : "0.22",
144+
"version" : "0.23",
145145
"x_authority" : "cpan:SIXAPART",
146146
"x_contributors" : [
147147
"Adam Thomason <athomason@sixapart.com>",
@@ -154,6 +154,7 @@
154154
"Garth Webb <gwebb@sixapart.com>",
155155
"Graham Blankenbaker <gblankenbaker@sixapart.com>",
156156
"Jonathan Steinert <jsteinert@sixapart.com>",
157+
"Keita Jamadam Sugama <sugama@jamadam.com>",
157158
"Kenichi Ishigaki <ishigaki@cpan.org>",
158159
"Kevin Goess <kgoess@sixapart.com>",
159160
"Mark Paschal <mpaschal@sixapart.com>",
@@ -174,6 +175,6 @@
174175
"ambs <ambs@cpan.org>",
175176
"ziguzagu <ziguzagu@gmail.com>"
176177
],
177-
"x_serialization_backend" : "JSON::PP version 4.06",
178+
"x_serialization_backend" : "JSON::PP version 4.16",
178179
"x_static_install" : 1
179180
}

lib/Data/ObjectDriver.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use Data::ObjectDriver::Iterator;
1111

1212
__PACKAGE__->mk_accessors(qw( pk_generator txn_active ));
1313

14-
our $VERSION = '0.22';
14+
our $VERSION = '0.23';
1515
our $DEBUG = $ENV{DOD_DEBUG} || 0;
1616
our $PROFILE = $ENV{DOD_PROFILE} || 0;
1717
our $PROFILER;

0 commit comments

Comments
 (0)