summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes11
-rw-r--r--README.md2
-rw-r--r--lib/DBIx/Interp.pm2
-rw-r--r--lib/SQL/Interp.pm4
4 files changed, 15 insertions, 4 deletions
diff --git a/Changes b/Changes
index c19f5e3..e396877 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,14 @@
+1.27 2021-02-15
+
+ [DOCUMENTATION]
+ - Document existing behavior of using sql() in combination with sql_interp_strict().
+ - Remove references to outstanding issues.
+ - Point to the gitea-based bug tracker instead of rt.cpan.org.
+
+ [INTERNALS]
+ - Add test case for non-recursive behavior of sql_interp_strict().
+ - Removed some unused code.
+
1.26 2020-04-15
[THINGS THAT MIGHT BREAK YOUR CODE]
diff --git a/README.md b/README.md
index 71bed56..c087360 100644
--- a/README.md
+++ b/README.md
@@ -23,7 +23,7 @@ Documentation is provided in the POD and is available online at [Metacpan](https
Copyright (c) 2004-2005 David Manura.
Copyright (c) 2005-2019 Mark Stosberg.
-Copyright (c) 2019 Yoran Heling.
+Copyright (c) 2019-2021 Yoran Heling.
This module is free software. It may be used, redistributed
and/or modified under the same terms as Perl itself.
diff --git a/lib/DBIx/Interp.pm b/lib/DBIx/Interp.pm
index 6df622c..d917c49 100644
--- a/lib/DBIx/Interp.pm
+++ b/lib/DBIx/Interp.pm
@@ -8,7 +8,7 @@ use base 'DBI';
use Exporter 'import';
-our $VERSION = '1.26';
+our $VERSION = '1.27';
our %EXPORT_TAGS = (all => [qw(
attr dbi_interp key_field
diff --git a/lib/SQL/Interp.pm b/lib/SQL/Interp.pm
index e3b283f..f2f0a32 100644
--- a/lib/SQL/Interp.pm
+++ b/lib/SQL/Interp.pm
@@ -1,6 +1,6 @@
package SQL::Interp;
-our $VERSION = '1.26';
+our $VERSION = '1.27';
use strict;
use warnings;
@@ -814,7 +814,7 @@ Copyright (c) 2004-2005 David Manura.
Copyright (c) 2005-2019 Mark Stosberg.
-Copyright (c) 2019 Yoran Heling.
+Copyright (c) 2019-2021 Yoran Heling.
This module is free software. It may be used, redistributed
and/or modified under the same terms as Perl itself.