summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Franck <nicolas.franck@ugent.be>2024-03-20 16:41:02 +0100
committerNicolas Franck <nicolas.franck@ugent.be>2024-03-20 16:41:02 +0100
commitcfbc68cf40274ce7557f7f6cf3ac37d61606188c (patch)
tree0b25557b177ff09976719d66e4ab1e84f098a68b
parente2a843bd95bc6a79ff28f8268b1c76f405816892 (diff)
0.13
-rw-r--r--Build.PL2
-rw-r--r--Changes2
-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
11 files changed, 12 insertions, 10 deletions
diff --git a/Build.PL b/Build.PL
index 6bee15e..60f12b3 100644
--- a/Build.PL
+++ b/Build.PL
@@ -18,7 +18,7 @@ my %module_build_args = (
"Nicolas Franck"
],
"dist_name" => "Catmandu-DBI",
- "dist_version" => "0.12",
+ "dist_version" => "0.13",
"license" => "perl",
"module_name" => "Catmandu::DBI",
"recursive_test_files" => 1,
diff --git a/Changes b/Changes
index 086f71a..03340fb 100644
--- a/Changes
+++ b/Changes
@@ -1,6 +1,8 @@
Revision history for Catmandu-DBI
{{$NEXT}}
+
+0.13 2024-03-20 16:40:53 CET
- create indexes in the current schema
0.12 2022-08-23 11:19:52 CEST
diff --git a/lib/Catmandu/DBI.pm b/lib/Catmandu/DBI.pm
index dcd589e..7bfe6a3 100644
--- a/lib/Catmandu/DBI.pm
+++ b/lib/Catmandu/DBI.pm
@@ -1,6 +1,6 @@
package Catmandu::DBI;
-our $VERSION = "0.12";
+our $VERSION = "0.13";
=head1 NAME
diff --git a/lib/Catmandu/Importer/DBI.pm b/lib/Catmandu/Importer/DBI.pm
index b6e3e10..0cd310b 100644
--- a/lib/Catmandu/Importer/DBI.pm
+++ b/lib/Catmandu/Importer/DBI.pm
@@ -6,7 +6,7 @@ use Moo;
use MooX::Aliases;
use namespace::clean;
-our $VERSION = '0.12';
+our $VERSION = '0.13';
with 'Catmandu::Importer';
diff --git a/lib/Catmandu/Store/DBI.pm b/lib/Catmandu/Store/DBI.pm
index 9cb48f9..df765b1 100644
--- a/lib/Catmandu/Store/DBI.pm
+++ b/lib/Catmandu/Store/DBI.pm
@@ -9,7 +9,7 @@ use MooX::Aliases;
use Catmandu::Error;
use namespace::clean;
-our $VERSION = "0.12";
+our $VERSION = "0.13";
with 'Catmandu::Store';
with 'Catmandu::Transactional';
diff --git a/lib/Catmandu/Store/DBI/Bag.pm b/lib/Catmandu/Store/DBI/Bag.pm
index 6307428..5a670e1 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.12";
+our $VERSION = "0.13";
my $default_mapping = {
_id => {
diff --git a/lib/Catmandu/Store/DBI/Handler.pm b/lib/Catmandu/Store/DBI/Handler.pm
index 823c3ff..4fad2de 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.12";
+our $VERSION = "0.13";
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 be27ff9..a621f8a 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.12";
+our $VERSION = "0.13";
with 'Catmandu::Store::DBI::Handler';
diff --git a/lib/Catmandu/Store/DBI/Handler/Pg.pm b/lib/Catmandu/Store/DBI/Handler/Pg.pm
index 0f1e82a..eb9fdb8 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.12";
+our $VERSION = "0.13";
with 'Catmandu::Store::DBI::Handler';
diff --git a/lib/Catmandu/Store/DBI/Handler/SQLite.pm b/lib/Catmandu/Store/DBI/Handler/SQLite.pm
index dba573f..c8c200c 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.12";
+our $VERSION = "0.13";
with 'Catmandu::Store::DBI::Handler';
diff --git a/lib/Catmandu/Store/DBI/Iterator.pm b/lib/Catmandu/Store/DBI/Iterator.pm
index eb62164..c3ab471 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.12";
+our $VERSION = "0.13";
with 'Catmandu::Iterable';