summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorNicolas Steenlant <nicolas.steenlant@ugent.be>2015-10-13 11:27:04 +0200
committerNicolas Steenlant <nicolas.steenlant@ugent.be>2015-10-13 11:27:04 +0200
commit83432142ad4a6d860e5dbebfd7ef5573d23985a1 (patch)
treef6baad45ee5689f3445e21b0ba58c9f7ee075a6f /lib
parent9eb8ccd4aacc43f08884f86dbdfa46d112948f22 (diff)
0.0501
Diffstat (limited to 'lib')
-rw-r--r--lib/Catmandu/DBI.pm2
-rw-r--r--lib/Catmandu/Importer/DBI.pm2
-rw-r--r--lib/Catmandu/Store/DBI.pm2
-rw-r--r--lib/Catmandu/Store/DBI/Bag.pm2
-rw-r--r--lib/Catmandu/Store/DBI/Handler.pm2
-rw-r--r--lib/Catmandu/Store/DBI/Handler/MySQL.pm2
-rw-r--r--lib/Catmandu/Store/DBI/Handler/Pg.pm2
-rw-r--r--lib/Catmandu/Store/DBI/Handler/SQLite.pm2
-rw-r--r--lib/Catmandu/Store/DBI/Iterator.pm2
9 files changed, 9 insertions, 9 deletions
diff --git a/lib/Catmandu/DBI.pm b/lib/Catmandu/DBI.pm
index 4912def..9dde820 100644
--- a/lib/Catmandu/DBI.pm
+++ b/lib/Catmandu/DBI.pm
@@ -1,6 +1,6 @@
package Catmandu::DBI;
-our $VERSION = "0.05";
+our $VERSION = "0.0501";
=head1 NAME
diff --git a/lib/Catmandu/Importer/DBI.pm b/lib/Catmandu/Importer/DBI.pm
index bca04a0..e7f0bb8 100644
--- a/lib/Catmandu/Importer/DBI.pm
+++ b/lib/Catmandu/Importer/DBI.pm
@@ -4,7 +4,7 @@ use Catmandu::Sane;
use DBI;
use Moo;
-our $VERSION = '0.05';
+our $VERSION = '0.0501';
with 'Catmandu::Importer';
diff --git a/lib/Catmandu/Store/DBI.pm b/lib/Catmandu/Store/DBI.pm
index 499724a..535ad32 100644
--- a/lib/Catmandu/Store/DBI.pm
+++ b/lib/Catmandu/Store/DBI.pm
@@ -7,7 +7,7 @@ use Catmandu::Store::DBI::Bag;
use Moo;
use namespace::clean;
-our $VERSION = "0.05";
+our $VERSION = "0.0501";
with 'Catmandu::Store';
diff --git a/lib/Catmandu/Store/DBI/Bag.pm b/lib/Catmandu/Store/DBI/Bag.pm
index 9947c6b..53c509b 100644
--- a/lib/Catmandu/Store/DBI/Bag.pm
+++ b/lib/Catmandu/Store/DBI/Bag.pm
@@ -5,7 +5,7 @@ use Moo;
use Catmandu::Store::DBI::Iterator;
use namespace::clean;
-our $VERSION = "0.05";
+our $VERSION = "0.0501";
my $default_mapping = {
_id => {
diff --git a/lib/Catmandu/Store/DBI/Handler.pm b/lib/Catmandu/Store/DBI/Handler.pm
index 7055552..4e9ff1d 100644
--- a/lib/Catmandu/Store/DBI/Handler.pm
+++ b/lib/Catmandu/Store/DBI/Handler.pm
@@ -4,7 +4,7 @@ use Catmandu::Sane;
use Moo::Role;
use namespace::clean;
-our $VERSION = "0.05";
+our $VERSION = "0.0501";
requires 'create_table';
requires 'add_row';
diff --git a/lib/Catmandu/Store/DBI/Handler/MySQL.pm b/lib/Catmandu/Store/DBI/Handler/MySQL.pm
index e1f832f..726cce7 100644
--- a/lib/Catmandu/Store/DBI/Handler/MySQL.pm
+++ b/lib/Catmandu/Store/DBI/Handler/MySQL.pm
@@ -4,7 +4,7 @@ use Catmandu::Sane;
use Moo;
use namespace::clean;
-our $VERSION = "0.05";
+our $VERSION = "0.0501";
with 'Catmandu::Store::DBI::Handler';
diff --git a/lib/Catmandu/Store/DBI/Handler/Pg.pm b/lib/Catmandu/Store/DBI/Handler/Pg.pm
index a321df2..68e7692 100644
--- a/lib/Catmandu/Store/DBI/Handler/Pg.pm
+++ b/lib/Catmandu/Store/DBI/Handler/Pg.pm
@@ -5,7 +5,7 @@ use DBD::Pg ();
use Moo;
use namespace::clean;
-our $VERSION = "0.05";
+our $VERSION = "0.0501";
with 'Catmandu::Store::DBI::Handler';
diff --git a/lib/Catmandu/Store/DBI/Handler/SQLite.pm b/lib/Catmandu/Store/DBI/Handler/SQLite.pm
index 3ae97c0..bf85a34 100644
--- a/lib/Catmandu/Store/DBI/Handler/SQLite.pm
+++ b/lib/Catmandu/Store/DBI/Handler/SQLite.pm
@@ -4,7 +4,7 @@ use Catmandu::Sane;
use Moo;
use namespace::clean;
-our $VERSION = "0.05";
+our $VERSION = "0.0501";
with 'Catmandu::Store::DBI::Handler';
diff --git a/lib/Catmandu/Store/DBI/Iterator.pm b/lib/Catmandu/Store/DBI/Iterator.pm
index c917e41..346d78a 100644
--- a/lib/Catmandu/Store/DBI/Iterator.pm
+++ b/lib/Catmandu/Store/DBI/Iterator.pm
@@ -5,7 +5,7 @@ use Catmandu::Util qw(is_value is_string is_array_ref);
use Moo;
use namespace::clean;
-our $VERSION = "0.05";
+our $VERSION = "0.0501";
with 'Catmandu::Iterable';