Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 0.09.
Browse files Browse the repository at this point in the history
Changelog diff is:

diff --git a/Changes b/Changes
index c41233e..5aa1827 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,11 @@ Revision history for Perl extension DBIx-EAV

 {{$NEXT}}

+0.09 2016-08-23T01:46:22Z
+
+    [ FIX ]
+    * added undeclared deps to cpanfile (GH #1 by andk)
+
 0.08 2016-08-15T19:01:30Z

     [ NEW ]
  • Loading branch information
Carlos Fernando Avila Gratz committed Aug 23, 2016
1 parent 4425a34 commit 60d940b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
5 changes: 5 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ Revision history for Perl extension DBIx-EAV

{{$NEXT}}

0.09 2016-08-23T01:46:22Z

[ FIX ]
* added undeclared deps to cpanfile (GH #1 by andk)

0.08 2016-08-15T19:01:30Z

[ NEW ]
Expand Down
4 changes: 3 additions & 1 deletion META.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,14 @@
},
"runtime" : {
"requires" : {
"Class::Load" : "0",
"DBI" : "0",
"Lingua::EN::Inflect" : "1.899",
"Moo" : "0",
"SQL::Abstract" : "0",
"SQL::Translator" : "0.11021",
"Scalar::Util" : "0",
"namespace::clean" : "0",
"perl" : "5.010",
"strictures" : "2.000003"
}
Expand All @@ -72,5 +74,5 @@
"web" : "https://github.com/cafe01/dbix-eav"
}
},
"version" : "0.08"
"version" : "0.09"
}
2 changes: 2 additions & 0 deletions cpanfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ requires 'Scalar::Util';
requires 'SQL::Abstract';
requires 'SQL::Translator', '0.11021';
requires 'Lingua::EN::Inflect', '1.899';
requires 'namespace::clean';
requires 'Class::Load';

on 'test' => sub {

Expand Down
2 changes: 1 addition & 1 deletion lib/DBIx/EAV.pm
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use Scalar::Util 'blessed';
use Class::Load qw' try_load_class ';
use namespace::clean;

our $VERSION = "0.08";
our $VERSION = "0.09";

# required
has 'dbh', is => 'ro', required => 1;
Expand Down

0 comments on commit 60d940b

Please sign in to comment.