Skip to content

Commit 76b2e26

Browse files
committed
Checking in changes prior to tagging of version 0.22.
Changelog diff is: diff --git a/Changes b/Changes index c55ccb1..4232ffa 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ {{$NEXT}} +0.22 2023-02-01T05:14:13Z + - Clear %Handle cache if dbh is set to undef #42 + - Skip fork test on win32 #41 + 0.21 2020-10-29T05:54:05Z - Add GitHub Actions #38 - Support DBD::MariaDB #39
1 parent 0a156c8 commit 76b2e26

3 files changed

Lines changed: 10 additions & 6 deletions

File tree

Changes

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

3+
0.22 2023-02-01T05:14:13Z
4+
- Clear %Handle cache if dbh is set to undef #42
5+
- Skip fork test on win32 #41
6+
37
0.21 2020-10-29T05:54:05Z
48
- Add GitHub Actions #38
59
- Support DBD::MariaDB #39

META.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"abstract" : "Simple, transparent data interface, with caching",
33
"author" : [
4-
"-2006"
4+
"& COPYRIGHT"
55
],
66
"dynamic_config" : 0,
7-
"generated_by" : "Minilla/v3.1.11, CPAN::Meta::Converter version 2.150010",
7+
"generated_by" : "Minilla/v3.1.20, CPAN::Meta::Converter version 2.150010",
88
"license" : [
99
"perl_5"
1010
],
@@ -137,11 +137,11 @@
137137
"homepage" : "https://github.com/sixapart/data-objectdriver",
138138
"repository" : {
139139
"type" : "git",
140-
"url" : "git://github.com/sixapart/data-objectdriver.git",
140+
"url" : "https://github.com/sixapart/data-objectdriver.git",
141141
"web" : "https://github.com/sixapart/data-objectdriver"
142142
}
143143
},
144-
"version" : "0.21",
144+
"version" : "0.22",
145145
"x_authority" : "cpan:SIXAPART",
146146
"x_contributors" : [
147147
"Adam Thomason <athomason@sixapart.com>",
@@ -174,6 +174,6 @@
174174
"ambs <ambs@cpan.org>",
175175
"ziguzagu <ziguzagu@gmail.com>"
176176
],
177-
"x_serialization_backend" : "JSON::PP version 2.97001",
177+
"x_serialization_backend" : "JSON::PP version 4.06",
178178
"x_static_install" : 1
179179
}

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.21';
14+
our $VERSION = '0.22';
1515
our $DEBUG = $ENV{DOD_DEBUG} || 0;
1616
our $PROFILE = $ENV{DOD_PROFILE} || 0;
1717
our $PROFILER;

0 commit comments

Comments
 (0)