diff -pruN 4.7.1-1/debian/changelog 4.7.2-1/debian/changelog
--- 4.7.1-1/debian/changelog	2025-04-05 08:33:39.000000000 +0000
+++ 4.7.2-1/debian/changelog	2025-09-17 17:02:07.000000000 +0000
@@ -1,3 +1,13 @@
+php-enum (4.7.2-1) unstable; urgency=medium
+
+  [ Marc Bennewitz ]
+  * Fixes #162: __sleep() & __wakeup() is deprecated in PHP 8.5 (#163)
+
+  [ David Prévot ]
+  * Remove Rules-Requires-Root
+
+ -- David Prévot <taffit@debian.org>  Wed, 17 Sep 2025 19:02:07 +0200
+
 php-enum (4.7.1-1) unstable; urgency=medium
 
   [ Marc Bennewitz ]
diff -pruN 4.7.1-1/debian/control 4.7.2-1/debian/control
--- 4.7.1-1/debian/control	2025-04-05 08:29:45.000000000 +0000
+++ 4.7.2-1/debian/control	2025-09-17 17:00:39.000000000 +0000
@@ -8,7 +8,6 @@ Standards-Version: 4.7.2
 Homepage: https://github.com/marc-mabe/php-enum
 Vcs-Git: https://salsa.debian.org/php-team/pear/php-enum.git
 Vcs-Browser: https://salsa.debian.org/php-team/pear/php-enum
-Rules-Requires-Root: no
 
 Package: php-enum
 Architecture: all
diff -pruN 4.7.1-1/debian/upstream/changelog 4.7.2-1/debian/upstream/changelog
--- 4.7.1-1/debian/upstream/changelog	2025-04-05 08:33:39.000000000 +0000
+++ 4.7.2-1/debian/upstream/changelog	2025-09-17 17:00:18.000000000 +0000
@@ -1,4 +1,11 @@
-v4.7.0 - 28 Nov 2024
+v4.7.2 - 14 Sep 2025
+
+4.7.2 Fix deprecation message on PHP 8.5 Latest
+What's Changed
+
+    Fixes #162: __sleep() & __wakeup() is deprecated in PHP 8.5 by @marc-mabe in #163
+
+v4.7.1 - 28 Nov 2024
 
 4.7.1 Fully Support PHP 8.2, 8.3 and 8.4 Latest
 
diff -pruN 4.7.1-1/src/Enum.php 4.7.2-1/src/Enum.php
--- 4.7.1-1/src/Enum.php	2024-11-28 04:54:44.000000000 +0000
+++ 4.7.2-1/src/Enum.php	2025-09-14 11:18:39.000000000 +0000
@@ -99,6 +99,16 @@ abstract class Enum implements \Stringab
     /**
      * @throws LogicException Serialization is not supported by default in this pseudo-enum implementation
      *
+     * @return array<string, mixed>
+     */
+    public function __serialize(): array
+    {
+        throw new LogicException('Serialization is not supported by default in this pseudo-enum implementation');
+    }
+
+    /**
+     * @throws LogicException Serialization is not supported by default in this pseudo-enum implementation
+     *
      * @psalm-return never-return
      */
     final public function __wakeup()
@@ -107,6 +117,16 @@ abstract class Enum implements \Stringab
     }
 
     /**
+     * @throws LogicException Serialization is not supported by default in this pseudo-enum implementation
+     *
+     * @param array<string, mixed> $data
+     */
+    public function __unserialize(array $data): void
+    {
+        throw new LogicException('Serialization is not supported by default in this pseudo-enum implementation');
+    }
+    
+    /**
      * Get the value of the enumerator
      *
      * @return null|bool|int|float|string|array<mixed>
