diff options
| author | Yuki Okushi <jtitor@2k36.org> | 2022-05-24 12:18:34 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-24 12:18:34 +0900 |
| commit | a1cbf66ee4de7913db018245931b20601f7b904f (patch) | |
| tree | 1d8fb88012ae5a368c57fd35d2446e2e3797a184 | |
| parent | 1b59db45d44778341d15ea7c8e22a23d023bfc87 (diff) | |
| parent | 328c84327bce1d2a7efb2e5e1635b2dba8d8f1ad (diff) | |
| download | rust-a1cbf66ee4de7913db018245931b20601f7b904f.tar.gz rust-a1cbf66ee4de7913db018245931b20601f7b904f.zip | |
Rollup merge of #97337 - tbu-:pr_fix_stabilization_ipv4_mapped, r=Mark-Simulacrum
Fix stabilization version of `Ipv6Addr::to_ipv4_mapped`
| -rw-r--r-- | library/std/src/net/ip.rs | 2 |
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] |
