summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Allbery <rra@cpan.org>2020-12-25 11:37:28 -0800
committerRuss Allbery <rra@cpan.org>2020-12-25 11:37:28 -0800
commit413cd8f921496b98cf149b5d6b0e30faa6e93518 (patch)
tree9bba01cef8711ecf72e270fc791606cf3d712d43
parentb04fa2c8235d3f36781ecf3f1e382015cc7e58b6 (diff)
Update to rra-c-util 9.0
Only module version updates and a minor tweak to ignore the .pc directory when checking for obsolete strings.
-rw-r--r--t/lib/Test/RRA.pm2
-rw-r--r--t/lib/Test/RRA/Config.pm2
-rw-r--r--t/lib/Test/RRA/ModuleVersion.pm2
-rwxr-xr-xt/style/obsolete-strings.t2
4 files changed, 4 insertions, 4 deletions
diff --git a/t/lib/Test/RRA.pm b/t/lib/Test/RRA.pm
index 334e8c6..b4ed42b 100644
--- a/t/lib/Test/RRA.pm
+++ b/t/lib/Test/RRA.pm
@@ -52,7 +52,7 @@ BEGIN {
# This version should match the corresponding rra-c-util release, but with
# two digits for the minor version, including a leading zero if necessary,
# so that it will sort properly.
- $VERSION = '8.03';
+ $VERSION = '9.00';
}
# Compare a string to the contents of a file, similar to the standard is()
diff --git a/t/lib/Test/RRA/Config.pm b/t/lib/Test/RRA/Config.pm
index bbdba6a..557c682 100644
--- a/t/lib/Test/RRA/Config.pm
+++ b/t/lib/Test/RRA/Config.pm
@@ -32,7 +32,7 @@ BEGIN {
# This version should match the corresponding rra-c-util release, but with
# two digits for the minor version, including a leading zero if necessary,
# so that it will sort properly.
- $VERSION = '8.03';
+ $VERSION = '9.00';
}
# If C_TAP_BUILD or C_TAP_SOURCE are set in the environment, look for
diff --git a/t/lib/Test/RRA/ModuleVersion.pm b/t/lib/Test/RRA/ModuleVersion.pm
index bfed7fc..afa4760 100644
--- a/t/lib/Test/RRA/ModuleVersion.pm
+++ b/t/lib/Test/RRA/ModuleVersion.pm
@@ -29,7 +29,7 @@ BEGIN {
# This version should match the corresponding rra-c-util release, but with
# two digits for the minor version, including a leading zero if necessary,
# so that it will sort properly.
- $VERSION = '8.03';
+ $VERSION = '9.00';
}
# A regular expression matching the version string for a module using the
diff --git a/t/style/obsolete-strings.t b/t/style/obsolete-strings.t
index 026e6eb..c379946 100755
--- a/t/style/obsolete-strings.t
+++ b/t/style/obsolete-strings.t
@@ -48,7 +48,7 @@ my @BAD_STRINGS = qw(rra@stanford.edu RRA_MAINTAINER_TESTS);
# File or directory names to always skip.
my %SKIP = map { $_ => 1 } qw(
- .git Changes _build blib changelog cover_db obsolete-strings.t
+ .git .pc Changes _build blib changelog cover_db obsolete-strings.t
);
# Only run this test during automated testing, since failure doesn't indicate