Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 0.23.
Browse files Browse the repository at this point in the history
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
  • Loading branch information
jamadam committed Oct 23, 2024
1 parent e3ffb0a commit 2c39859
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -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
Expand Down
7 changes: 4 additions & 3 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
],
Expand Down Expand Up @@ -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 <[email protected]>",
Expand All @@ -154,6 +154,7 @@
"Garth Webb <[email protected]>",
"Graham Blankenbaker <[email protected]>",
"Jonathan Steinert <[email protected]>",
"Keita Jamadam Sugama <[email protected]>",
"Kenichi Ishigaki <[email protected]>",
"Kevin Goess <[email protected]>",
"Mark Paschal <[email protected]>",
Expand All @@ -174,6 +175,6 @@
"ambs <[email protected]>",
"ziguzagu <[email protected]>"
],
"x_serialization_backend" : "JSON::PP version 4.06",
"x_serialization_backend" : "JSON::PP version 4.16",
"x_static_install" : 1
}
2 changes: 1 addition & 1 deletion lib/Data/ObjectDriver.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 2c39859

Please sign in to comment.