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 <[email protected]>",
"Jonathan Steinert <[email protected]>",
"Paul Lindner <[email protected]>",
"Adam Thomason <[email protected]>",
"Akira Sawada <[email protected]>",
"Ben Trott <[email protected]>",
"Brad Choate <[email protected]>",
"Brad Fitzpatrick <[email protected]>",
"Mischa <[email protected]>",
"Brad Whitaker <[email protected]>",
"David Steinbrunner <[email protected]>",
"Garth Webb <[email protected]>",
"Graham Blankenbaker <[email protected]>",
"Brad Choate <[email protected]>",
"Jonathan Steinert <[email protected]>",
"Kenichi Ishigaki <[email protected]>",
"Kevin Goess <[email protected]>",
"Mark Paschal <[email protected]>",
"Mart Atkins <[email protected]>",
"Masahiro Iuchi <[email protected]>",
"Mischa <[email protected]>",
"Paul Lindner <[email protected]>",
"Sekimura <[email protected]>",
"Simon Wistow <[email protected]>",
"Takatsugu Shigeta <[email protected]>",
"Takatsugu Shigeta <[email protected]>",
"Taku AMANO <[email protected]>",
"Tatsuhiko Miyagawa <[email protected]>",
"Ben Trott <[email protected]>",
"Kevin Goess <[email protected]>",
"Adam Thomason <[email protected]>",
"Brad Whitaker <[email protected]>",
"Tsuyoshi Watanabe <[email protected]>",
"Yann Kerherve <[email protected]>",
"Taku AMANO <[email protected]>",
"ambs <[email protected]>",
"David Steinbrunner <[email protected]>",
"Akira Sawada <[email protected]>",
"ziguzagu <[email protected]>",
"Masahiro Iuchi <[email protected]>"
"ziguzagu <[email protected]>"
],
"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.