diff --git a/HTML-RewriteAttributes-0.05.tar.gz b/HTML-RewriteAttributes-0.05.tar.gz
deleted file mode 100644
index 40c6177..0000000
--- a/HTML-RewriteAttributes-0.05.tar.gz
+++ /dev/null
@@ -1,3 +0,0 @@
-version https://git-lfs.github.com/spec/v1
-oid sha256:1808ec7cdf40d2708575fe6155a88f103b17fec77973a5831c2f24c250e7a58c
-size 27696
diff --git a/HTML-RewriteAttributes-0.06.tar.gz b/HTML-RewriteAttributes-0.06.tar.gz
new file mode 100644
index 0000000..28633f8
--- /dev/null
+++ b/HTML-RewriteAttributes-0.06.tar.gz
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:bc64200261142f9a5f7e0786dc5ab24a6330bc19bd1e3e9bb4b6d7c31621b722
+size 26989
diff --git a/perl-HTML-RewriteAttributes.changes b/perl-HTML-RewriteAttributes.changes
index b191719..d4a7d1e 100644
--- a/perl-HTML-RewriteAttributes.changes
+++ b/perl-HTML-RewriteAttributes.changes
@@ -1,3 +1,16 @@
+-------------------------------------------------------------------
+Thu Dec 12 16:22:25 UTC 2024 - Tina Müller 
+
+- updated to 0.60.0 (0.06)
+   see /usr/share/doc/packages/perl-HTML-RewriteAttributes/Changes
+
+  0.06    Fri Nov  12 2024
+          Pass more args to callback to support adding attributes.
+          Improve documentation for other features.
+          Add dot ('.') to Makefile.PL to find Module::Install in newer perls. Reported by Kent Fredric, RT 121446.
+          Remove unneeded shebang line in lib files. Reported by Laurent Baillet, RT 126906.
+          Fix spelling error in docs. Reported by x.guimard, RT 126964.
+
 -------------------------------------------------------------------
 Tue Oct  3 08:14:57 UTC 2017 - coolo@suse.com
 
diff --git a/perl-HTML-RewriteAttributes.spec b/perl-HTML-RewriteAttributes.spec
index 9438f8c..2eb22a8 100644
--- a/perl-HTML-RewriteAttributes.spec
+++ b/perl-HTML-RewriteAttributes.spec
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-HTML-RewriteAttributes
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2024 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,24 +12,25 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
-Name:           perl-HTML-RewriteAttributes
-Version:        0.05
-Release:        0
 %define cpan_name HTML-RewriteAttributes
-Summary:        Concise Attribute Rewriting
-License:        Artistic-1.0 or GPL-1.0+
-Group:          Development/Libraries/Perl
-Url:            http://search.cpan.org/dist/HTML-RewriteAttributes/
-Source0:        https://cpan.metacpan.org/authors/id/T/TS/TSIBLEY/%{cpan_name}-%{version}.tar.gz
+Name:           perl-HTML-RewriteAttributes
+Version:        0.60.0
+Release:        0
+# 0.06 -> normalize -> 0.60.0
+%define cpan_version 0.06
+License:        Artistic-1.0 OR GPL-1.0-or-later
+Summary:        Concise attribute rewriting
+URL:            https://metacpan.org/release/%{cpan_name}
+Source0:        https://cpan.metacpan.org/authors/id/B/BP/BPS/%{cpan_name}-%{cpan_version}.tar.gz
 Source1:        cpanspec.yml
 BuildArch:      noarch
-BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
+BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.36
 BuildRequires:  perl(HTML::Entities)
 BuildRequires:  perl(HTML::Parser)
 BuildRequires:  perl(HTML::Tagset)
@@ -38,6 +39,10 @@ Requires:       perl(HTML::Entities)
 Requires:       perl(HTML::Parser)
 Requires:       perl(HTML::Tagset)
 Requires:       perl(URI)
+Provides:       perl(HTML::RewriteAttributes) = %{version}
+Provides:       perl(HTML::RewriteAttributes::Links) = 0.03
+Provides:       perl(HTML::RewriteAttributes::Resources) = 0.03
+%undefine       __perllib_provides
 %{perl_requires}
 
 %description
@@ -48,20 +53,24 @@ You simply specify a callback to run for each attribute and we do the rest
 for you.
 
 This module is designed to be subclassable to make handling special cases
-eaiser. See the source for methods you can override.
+easier. See the source for methods you can override.
+
+See the SYNOPSIS above and included tests in the 't' directory for more
+examples.
 
 %prep
-%setup -q -n %{cpan_name}-%{version}
+%autosetup  -n %{cpan_name}-%{cpan_version}
+
 # MANUAL BEGIN
 sed -i -e 's/use inc::Module::Install/use lib q[.];\nuse inc::Module::Install/' Makefile.PL
 # MANUAL END
 
 %build
-%{__perl} Makefile.PL INSTALLDIRS=vendor
-%{__make} %{?_smp_mflags}
+PERL_USE_UNSAFE_INC=1 perl Makefile.PL INSTALLDIRS=vendor
+%make_build
 
 %check
-%{__make} test
+make test
 
 %install
 %perl_make_install
@@ -69,7 +78,6 @@ sed -i -e 's/use inc::Module::Install/use lib q[.];\nuse inc::Module::Install/'
 %perl_gen_filelist
 
 %files -f %{name}.files
-%defattr(-,root,root,755)
 %doc Changes README
 
 %changelog