Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 0.16.
Browse files Browse the repository at this point in the history
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
  • Loading branch information
comewalk committed Mar 7, 2019
1 parent 6b19220 commit 9b63a6d
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 19 deletions.
7 changes: 7 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -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
Expand Down
41 changes: 23 additions & 18 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"-2006"
],
"dynamic_config" : 0,
"generated_by" : "Minilla/v3.0.10, CPAN::Meta::Converter version 2.150005",
"generated_by" : "Minilla/v3.1.4, CPAN::Meta::Converter version 2.150010",
"license" : [
"artistic_2"
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
"version" : "2"
"version" : 2
},
"name" : "Data-ObjectDriver",
"no_index" : {
Expand Down Expand Up @@ -79,32 +79,37 @@
"web" : "https://github.com/sixapart/data-objectdriver"
}
},
"version" : "0.15",
"version" : "0.16",
"x_authority" : "cpan:SIXAPART",
"x_contributors" : [
"Mart Atkins <matkins@sixapart.com>",
"Jonathan Steinert <jsteinert@sixapart.com>",
"Paul Lindner <paul@inuus.com>",
"Adam Thomason <athomason@sixapart.com>",
"Akira Sawada <akira@peatix.com>",
"Ben Trott <ben@sixapart.com>",
"Brad Choate <bchoate@sixapart.com>",
"Brad Fitzpatrick <brad@danga.com>",
"Mischa <none@sixapart.com>",
"Brad Whitaker <whitaker@sixapart.com>",
"David Steinbrunner <dsteinbrunner@pobox.com>",
"Garth Webb <gwebb@sixapart.com>",
"Graham Blankenbaker <gblankenbaker@sixapart.com>",
"Brad Choate <bchoate@sixapart.com>",
"Jonathan Steinert <jsteinert@sixapart.com>",
"Kenichi Ishigaki <ishigaki@cpan.org>",
"Kevin Goess <kgoess@sixapart.com>",
"Mark Paschal <mpaschal@sixapart.com>",
"Mart Atkins <matkins@sixapart.com>",
"Masahiro Iuchi <miuchi@sixapart.com>",
"Mischa <none@sixapart.com>",
"Paul Lindner <paul@inuus.com>",
"Sekimura <sekimura@sixapart.com>",
"Simon Wistow <swistow@sixapart.com>",
"Takatsugu Shigeta <shigeta@cpan.org>",
"Takatsugu Shigeta <tshigeta@sixapart.com>",
"Taku AMANO <taku@toi-planning.net>",
"Tatsuhiko Miyagawa <miyagawa@sixapart.com>",
"Ben Trott <ben@sixapart.com>",
"Kevin Goess <kgoess@sixapart.com>",
"Adam Thomason <athomason@sixapart.com>",
"Brad Whitaker <whitaker@sixapart.com>",
"Tsuyoshi Watanabe <twata_1@yahoo.co.jp>",
"Yann Kerherve <yann@cyberion.net>",
"Taku AMANO <taku@toi-planning.net>",
"ambs <ambs@cpan.org>",
"David Steinbrunner <dsteinbrunner@pobox.com>",
"Akira Sawada <akira@peatix.com>",
"ziguzagu <ziguzagu@gmail.com>",
"Masahiro Iuchi <miuchi@sixapart.com>"
"ziguzagu <ziguzagu@gmail.com>"
],
"x_serialization_backend" : "JSON::PP version 2.27300_01"
"x_serialization_backend" : "JSON::PP version 2.97001",
"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.15';
our $VERSION = '0.16';
our $DEBUG = $ENV{DOD_DEBUG} || 0;
our $PROFILE = $ENV{DOD_PROFILE} || 0;
our $PROFILER;
Expand Down

0 comments on commit 9b63a6d

Please sign in to comment.