From 50d66694fd979b69d6ab11e190f43899f8e59c64 Mon Sep 17 00:00:00 2001 From: Steve Hay Date: Mon, 20 Jan 2025 22:18:58 +0000 Subject: [PATCH] Prepare Module::CoreList for 5.41.9 --- dist/Module-CoreList/Changes | 3 +++ dist/Module-CoreList/lib/Module/CoreList.pm | 21 ++++++++++++++++++- .../lib/Module/CoreList/Utils.pm | 9 +++++++- 3 files changed, 31 insertions(+), 2 deletions(-) diff --git a/dist/Module-CoreList/Changes b/dist/Module-CoreList/Changes index eea8e27134c1..a9fcdc4ef7d8 100644 --- a/dist/Module-CoreList/Changes +++ b/dist/Module-CoreList/Changes @@ -1,3 +1,6 @@ +5.20250220 + - Updated for v5.41.9 + 5.20250120 - Updated for v5.41.8 diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm index b1398bdc81e1..bf2220d33f39 100644 --- a/dist/Module-CoreList/lib/Module/CoreList.pm +++ b/dist/Module-CoreList/lib/Module/CoreList.pm @@ -4,7 +4,7 @@ use strict; our ( %released, %version, %families, %upstream, %bug_tracker, %deprecated, %delta ); use version; -our $VERSION = '5.20250120'; +our $VERSION = '5.20250220'; sub PKG_PATTERN () { q#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z# } sub _looks_like_invocant ($) { local $@; !!eval { $_[0]->isa(__PACKAGE__) } } @@ -434,6 +434,7 @@ sub changes_between { 5.038003 => '2025-01-18', 5.040001 => '2025-01-18', 5.041008 => '2025-01-20', + 5.041009 => '2025-02-20', ); for my $version ( sort { $a <=> $b } keys %released ) { @@ -22763,6 +22764,17 @@ for my $version ( sort { $a <=> $b } keys %released ) { 'Test::Builder::IO::Scalar'=> 1, } }, + 5.041009 => { + delta_from => 5.041008, + changed => { + 'B::Op_private' => '5.041009', + 'Config' => '5.041009', + 'Module::CoreList' => '5.20250220', + 'Module::CoreList::Utils'=> '5.20250220', + }, + removed => { + } + }, ); sub is_core @@ -24353,6 +24365,13 @@ sub is_core removed => { } }, + 5.041009 => { + delta_from => 5.041008, + changed => { + }, + removed => { + } + }, ); %deprecated = _undelta(\%deprecated); diff --git a/dist/Module-CoreList/lib/Module/CoreList/Utils.pm b/dist/Module-CoreList/lib/Module/CoreList/Utils.pm index 0084cf6634c6..87b4f5f8ed2b 100644 --- a/dist/Module-CoreList/lib/Module/CoreList/Utils.pm +++ b/dist/Module-CoreList/lib/Module/CoreList/Utils.pm @@ -4,7 +4,7 @@ use strict; use warnings; use Module::CoreList; -our $VERSION = '5.20250120'; +our $VERSION = '5.20250220'; our %utilities; sub utilities { @@ -2098,6 +2098,13 @@ my %delta = ( removed => { } }, + 5.041009 => { + delta_from => 5.041008, + changed => { + }, + removed => { + } + }, ); %utilities = Module::CoreList::_undelta(\%delta);