From c62b4d1c35195c223a65dc9a082241dca5bb84d5 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Fri, 15 Mar 2024 02:48:17 -0700 Subject: [PATCH] Imports: disable deprecation warnings I will be monitoring deprecations and will update PBot as necessary. --- lib/PBot/Imports.pm | 4 ++++ lib/PBot/VERSION.pm | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/PBot/Imports.pm b/lib/PBot/Imports.pm index 6490cb55..aee4791d 100644 --- a/lib/PBot/Imports.pm +++ b/lib/PBot/Imports.pm @@ -29,6 +29,10 @@ sub import { # no warnings => 'experimental'; warnings->unimport::out_of($target, 'experimental'); + + # no warnings => 'deprecated'; + # note: I will be monitoring deprecations and will update PBot accordingly + warnings->unimport::out_of($target, 'deprecated'); } sub unimport {} diff --git a/lib/PBot/VERSION.pm b/lib/PBot/VERSION.pm index c6aa3050..3938a1ff 100644 --- a/lib/PBot/VERSION.pm +++ b/lib/PBot/VERSION.pm @@ -25,8 +25,8 @@ use PBot::Imports; # These are set by the /misc/update_version script use constant { BUILD_NAME => "PBot", - BUILD_REVISION => 4716, - BUILD_DATE => "2024-03-10", + BUILD_REVISION => 4717, + BUILD_DATE => "2024-03-15", }; sub initialize {}