summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYorhel <git@yorhel.nl>2020-04-15 09:23:51 +0200
committerYorhel <git@yorhel.nl>2020-04-15 09:23:51 +0200
commite5e70d1ac9d5b2c23305e85837904fff7dd1269d (patch)
treecda8261f7f0518b1d535dfd67dd4d029747e2d5b
parentda1deeef802672b634878968ce568585b7cfe3fc (diff)
Version 1.261.26
-rw-r--r--Changes12
-rw-r--r--lib/DBIx/Interp.pm2
-rw-r--r--lib/SQL/Interp.pm2
3 files changed, 14 insertions, 2 deletions
diff --git a/Changes b/Changes
index 084c246..c19f5e3 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,15 @@
+1.26 2020-04-15
+
+ [THINGS THAT MIGHT BREAK YOUR CODE]
+ - The Sub::Exporter dependency has been dropped, meaning that its advanced
+ importing features are not available anymore. '-as' style function renaming
+ still works, so this /should/ not affect your code if you stuck with the
+ documented functionality.
+
+ [BUG FIXES]
+ - Properly handle 'IS (NOT) DISTINCT FROM' comparison operator.
+ - Properly handle quoted identifiers in 'INSERT INTO x' and 'x IN' contexts.
+
1.25 2019-10-22
[FEATURES]
diff --git a/lib/DBIx/Interp.pm b/lib/DBIx/Interp.pm
index b93b087..92c4fb6 100644
--- a/lib/DBIx/Interp.pm
+++ b/lib/DBIx/Interp.pm
@@ -8,7 +8,7 @@ use base 'DBI';
use Exporter 'import';
-our $VERSION = '1.25';
+our $VERSION = '1.26';
our %EXPORT_TAGS = (all => [qw(
attr dbi_interp key_field
diff --git a/lib/SQL/Interp.pm b/lib/SQL/Interp.pm
index 9d547e5..22cbb62 100644
--- a/lib/SQL/Interp.pm
+++ b/lib/SQL/Interp.pm
@@ -1,6 +1,6 @@
package SQL::Interp;
-our $VERSION = '1.25';
+our $VERSION = '1.26';
use strict;
use warnings;