From a27d001901b781e8a4355073b4b4ea1613ce084b Mon Sep 17 00:00:00 2001 From: Charles McGarvey Date: Sat, 16 Nov 2019 22:54:55 -0700 Subject: [PATCH] require Path::Tiny 0.089 (for spewing arrayrefs) --- lib/File/Codeowners.pm | 2 +- maint/fatpack.pl | 2 +- t/app-codeowners.t | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/File/Codeowners.pm b/lib/File/Codeowners.pm index 648390e..8ca8393 100644 --- a/lib/File/Codeowners.pm +++ b/lib/File/Codeowners.pm @@ -6,7 +6,7 @@ use warnings; use strict; use Encode qw(encode); -use Path::Tiny; +use Path::Tiny 0.089; use Scalar::Util qw(openhandle); use Text::Gitignore qw(build_gitignore_matcher); diff --git a/maint/fatpack.pl b/maint/fatpack.pl index 921380c..5486ae6 100755 --- a/maint/fatpack.pl +++ b/maint/fatpack.pl @@ -21,7 +21,7 @@ use File::pushd; use Getopt::Long; use MetaCPAN::API; use Module::CoreList; -use Path::Tiny; +use Path::Tiny 0.089; my $core_version = '5.010001'; my $plenv_version = '5.10.1'; diff --git a/t/app-codeowners.t b/t/app-codeowners.t index af426e6..b5e430e 100644 --- a/t/app-codeowners.t +++ b/t/app-codeowners.t @@ -9,7 +9,7 @@ use App::Codeowners::Util qw(run_git); use App::Codeowners; use Capture::Tiny qw(capture); use File::pushd; -use Path::Tiny qw(path tempdir); +use Path::Tiny 0.089 qw(path tempdir); use Test::More; my $can_git = _can_git(); -- 2.43.0