From 328c84327bce1d2a7efb2e5e1635b2dba8d8f1ad Mon Sep 17 00:00:00 2001 From: Tobias Bucher Date: Tue, 24 May 2022 01:05:06 +0200 Subject: [PATCH] Fix stabilization version of `Ipv6Addr::to_ipv4_mapped` --- library/std/src/net/ip.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/net/ip.rs b/library/std/src/net/ip.rs index 46004c9914200..438bae01b60d2 100644 --- a/library/std/src/net/ip.rs +++ b/library/std/src/net/ip.rs @@ -1655,7 +1655,7 @@ impl Ipv6Addr { /// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1).to_ipv4_mapped(), None); /// ``` #[rustc_const_unstable(feature = "const_ipv6", issue = "76205")] - #[stable(feature = "ipv6_to_ipv4_mapped", since = "1.62.0")] + #[stable(feature = "ipv6_to_ipv4_mapped", since = "1.63.0")] #[must_use = "this returns the result of the operation, \ without modifying the original"] #[inline]