Skip to content

Commit 9b63a6d

Browse files
committed
Checking in changes prior to tagging of version 0.16.
Changelog diff is: diff --git a/Changes b/Changes index ed959bd..2784461 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,12 @@ {{$NEXT}} +0.16 2019-03-07T07:07:14Z + + - Avoid SQL syntax error: column IN () (charsbar) #26 + - Add disconnect method explicitly to pass tests for windows (twata1) #25 + +0.15 2017-04-19T01:41:02Z + - Fix failed tests with Perl 5.25.11 (miniuchi) #24 0.14 2016-01-14T03:03:02Z
1 parent 6b19220 commit 9b63a6d

3 files changed

Lines changed: 31 additions & 19 deletions

File tree

Changes

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

3+
0.16 2019-03-07T07:07:14Z
4+
5+
- Avoid SQL syntax error: column IN () (charsbar) #26
6+
- Add disconnect method explicitly to pass tests for windows (twata1) #25
7+
8+
0.15 2017-04-19T01:41:02Z
9+
310
- Fix failed tests with Perl 5.25.11 (miniuchi) #24
411

512
0.14 2016-01-14T03:03:02Z

META.json

Lines changed: 23 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"-2006"
55
],
66
"dynamic_config" : 0,
7-
"generated_by" : "Minilla/v3.0.10, CPAN::Meta::Converter version 2.150005",
7+
"generated_by" : "Minilla/v3.1.4, CPAN::Meta::Converter version 2.150010",
88
"license" : [
99
"artistic_2"
1010
],
1111
"meta-spec" : {
1212
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
13-
"version" : "2"
13+
"version" : 2
1414
},
1515
"name" : "Data-ObjectDriver",
1616
"no_index" : {
@@ -79,32 +79,37 @@
7979
"web" : "https://github.com/sixapart/data-objectdriver"
8080
}
8181
},
82-
"version" : "0.15",
82+
"version" : "0.16",
8383
"x_authority" : "cpan:SIXAPART",
8484
"x_contributors" : [
85-
"Mart Atkins <matkins@sixapart.com>",
86-
"Jonathan Steinert <jsteinert@sixapart.com>",
87-
"Paul Lindner <paul@inuus.com>",
85+
"Adam Thomason <athomason@sixapart.com>",
86+
"Akira Sawada <akira@peatix.com>",
87+
"Ben Trott <ben@sixapart.com>",
88+
"Brad Choate <bchoate@sixapart.com>",
8889
"Brad Fitzpatrick <brad@danga.com>",
89-
"Mischa <none@sixapart.com>",
90+
"Brad Whitaker <whitaker@sixapart.com>",
91+
"David Steinbrunner <dsteinbrunner@pobox.com>",
9092
"Garth Webb <gwebb@sixapart.com>",
9193
"Graham Blankenbaker <gblankenbaker@sixapart.com>",
92-
"Brad Choate <bchoate@sixapart.com>",
94+
"Jonathan Steinert <jsteinert@sixapart.com>",
95+
"Kenichi Ishigaki <ishigaki@cpan.org>",
96+
"Kevin Goess <kgoess@sixapart.com>",
9397
"Mark Paschal <mpaschal@sixapart.com>",
98+
"Mart Atkins <matkins@sixapart.com>",
99+
"Masahiro Iuchi <miuchi@sixapart.com>",
100+
"Mischa <none@sixapart.com>",
101+
"Paul Lindner <paul@inuus.com>",
94102
"Sekimura <sekimura@sixapart.com>",
95103
"Simon Wistow <swistow@sixapart.com>",
104+
"Takatsugu Shigeta <shigeta@cpan.org>",
105+
"Takatsugu Shigeta <tshigeta@sixapart.com>",
106+
"Taku AMANO <taku@toi-planning.net>",
96107
"Tatsuhiko Miyagawa <miyagawa@sixapart.com>",
97-
"Ben Trott <ben@sixapart.com>",
98-
"Kevin Goess <kgoess@sixapart.com>",
99-
"Adam Thomason <athomason@sixapart.com>",
100-
"Brad Whitaker <whitaker@sixapart.com>",
108+
"Tsuyoshi Watanabe <twata_1@yahoo.co.jp>",
101109
"Yann Kerherve <yann@cyberion.net>",
102-
"Taku AMANO <taku@toi-planning.net>",
103110
"ambs <ambs@cpan.org>",
104-
"David Steinbrunner <dsteinbrunner@pobox.com>",
105-
"Akira Sawada <akira@peatix.com>",
106-
"ziguzagu <ziguzagu@gmail.com>",
107-
"Masahiro Iuchi <miuchi@sixapart.com>"
111+
"ziguzagu <ziguzagu@gmail.com>"
108112
],
109-
"x_serialization_backend" : "JSON::PP version 2.27300_01"
113+
"x_serialization_backend" : "JSON::PP version 2.97001",
114+
"x_static_install" : 1
110115
}

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

0 commit comments

Comments
 (0)