about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTobias Bucher <tobiasbucher5991@gmail.com>2022-05-24 01:05:06 +0200
committerTobias Bucher <tobiasbucher5991@gmail.com>2022-05-24 01:05:06 +0200
commit328c84327bce1d2a7efb2e5e1635b2dba8d8f1ad (patch)
tree3f524f0e7d07d2fcea149041a28a55404dbac3bc
parent222c5724ecc922fe67815f428c19f82c129d9386 (diff)
downloadrust-328c84327bce1d2a7efb2e5e1635b2dba8d8f1ad.tar.gz
rust-328c84327bce1d2a7efb2e5e1635b2dba8d8f1ad.zip
Fix stabilization version of `Ipv6Addr::to_ipv4_mapped`
-rw-r--r--library/std/src/net/ip.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/net/ip.rs b/library/std/src/net/ip.rs
index 46004c99142..438bae01b60 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]