[Bps-public-commit] dbix-searchbuilder branch master updated. 1.73-3-g1c90f71

BPS Git Server git at git.bestpractical.com
Mon Dec 12 14:23:11 UTC 2022


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "dbix-searchbuilder".

The branch, master has been updated
       via  1c90f719a6e93148523cf097c344792a999f115b (commit)
       via  259614182301973ff9193bc7dcf7f4dca69e5b2c (commit)
       via  632f9ccb573a5adeb94401e2c6b95b653c11c120 (commit)
      from  5c31b899cbb4ecba0b72e7e7ca0d6be8ec928acc (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 1c90f719a6e93148523cf097c344792a999f115b
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Mon Dec 12 22:07:27 2022 +0800

    Prep version 1.74

diff --git a/Changes b/Changes
index 34f4d80..0296355 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Perl extension DBIx::SearchBuilder.
 
+1.74 2022-12-12
+ - Explicitly require version to make cpantesters happy
+ - Require perl 5.10.1+ to not support derelict versions
+
 1.73 2022-12-08
  - Remove very old CVS headers from files
  - Standardize whitespace
diff --git a/META.yml b/META.yml
index b7702fb..9aaa24a 100644
--- a/META.yml
+++ b/META.yml
@@ -4,11 +4,11 @@ author:
   - 'Best Practical Solutions, LLC <modules at bestpractical.com>'
 build_requires:
   DBD::SQLite: 0
-  ExtUtils::MakeMaker: 6.36
+  ExtUtils::MakeMaker: 6.59
   File::Temp: 0
   Test::More: 0.52
 configure_requires:
-  ExtUtils::MakeMaker: 6.36
+  ExtUtils::MakeMaker: 6.59
 distribution_type: module
 dynamic_config: 1
 generated_by: 'Module::Install version 1.19'
@@ -36,4 +36,4 @@ requires:
   perl: 5.10.1
 resources:
   license: http://dev.perl.org/licenses/
-version: '1.73'
+version: '1.74'
diff --git a/lib/DBIx/SearchBuilder.pm b/lib/DBIx/SearchBuilder.pm
index 3830309..782a9aa 100755
--- a/lib/DBIx/SearchBuilder.pm
+++ b/lib/DBIx/SearchBuilder.pm
@@ -4,7 +4,7 @@ package DBIx::SearchBuilder;
 use strict;
 use warnings;
 
-our $VERSION = "1.73";
+our $VERSION = "1.74";
 
 use Clone qw();
 use Encode qw();

commit 259614182301973ff9193bc7dcf7f4dca69e5b2c
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Mon Dec 12 22:06:08 2022 +0800

    Bump perl version to 5.10.1, older ones are way obsolete

diff --git a/META.yml b/META.yml
index 4b35c27..b7702fb 100644
--- a/META.yml
+++ b/META.yml
@@ -33,6 +33,7 @@ requires:
   Scalar::Util: 0
   Want: 0
   capitalization: '0.03'
+  perl: 5.10.1
 resources:
   license: http://dev.perl.org/licenses/
 version: '1.73'
diff --git a/Makefile.PL b/Makefile.PL
index 99f1e3f..61aec11 100755
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -3,6 +3,7 @@ use inc::Module::Install;
 
 name ('DBIx-SearchBuilder');
 all_from('lib/DBIx/SearchBuilder.pm');
+perl_version('5.10.1');
 requires('DBI');
 requires('Want');
 requires('Encode' => '1.99');

commit 632f9ccb573a5adeb94401e2c6b95b653c11c120
Author: sunnavy <sunnavy at bestpractical.com>
Date:   Mon Dec 12 22:04:44 2022 +0800

    Explicitly require version to make sure it's loaded
    
    This is initially to get rid of test errors from cpantesters:
    
        Can't locate object method "parse" via package "version"

diff --git a/t/03searches_combine.t b/t/03searches_combine.t
index 39f5cdd..4dc8674 100644
--- a/t/03searches_combine.t
+++ b/t/03searches_combine.t
@@ -5,6 +5,7 @@ BEGIN { require "./t/utils.pl" }
 our (@AvailableDrivers);
 
 use constant TESTS_PER_DRIVER => 14;
+use version;
 
 my $total = scalar(@AvailableDrivers) * TESTS_PER_DRIVER;
 plan tests => $total;

-----------------------------------------------------------------------

Summary of changes:
 Changes                   | 4 ++++
 META.yml                  | 7 ++++---
 Makefile.PL               | 1 +
 lib/DBIx/SearchBuilder.pm | 2 +-
 t/03searches_combine.t    | 1 +
 5 files changed, 11 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
dbix-searchbuilder


More information about the Bps-public-commit mailing list