Skip to content

Commit 6b23c64

Browse files
committed
fix: change deprecation version to 0.2.172
1 parent e94bba1 commit 6b23c64

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/primitives.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ cfg_if! {
138138
#[deprecated(since = "0.2.172", note = "Use i128 instead.")]
139139
pub type __int128_t = i128;
140140
/// C __uint128_t (alternate name for [__uint128][])
141-
#[deprecated(since = "0.2.172", note = "Use u128 instead.")]
141+
#[deprecated(since = "0.2.172", note = "Use u128 instead.")]
142142
pub type __uint128_t = u128;
143143

144144
// NOTE: if you add more platforms to here, you may need to cfg
@@ -185,10 +185,10 @@ cfg_if! {
185185
)
186186
))] {
187187
/// C `__int128_t`
188-
#[deprecated(since = "1.0", note = "Use i128 instead.")]
188+
#[deprecated(since = "0.2.172", note = "Use i128 instead.")]
189189
pub type __int128_t = i128;
190190
/// C `__uint128_t`
191-
#[deprecated(since = "1.0", note = "Use ux128 instead.")]
191+
#[deprecated(since = "0.2.172", note = "Use ux128 instead.")]
192192
pub type __uint128_t = u128;
193193
}
194194
}

0 commit comments

Comments
 (0)