@@ -723,7 +723,7 @@ impl OsStr {
723
723
///
724
724
/// assert_eq!("grÜße, jÜrgen ❤", s);
725
725
/// ```
726
- #[ stable( feature = "osstring_ascii" , since = "1.52 .0" ) ]
726
+ #[ stable( feature = "osstring_ascii" , since = "1.53 .0" ) ]
727
727
#[ inline]
728
728
pub fn make_ascii_lowercase ( & mut self ) {
729
729
self . inner . make_ascii_lowercase ( )
@@ -748,7 +748,7 @@ impl OsStr {
748
748
///
749
749
/// assert_eq!("GRüßE, JüRGEN ❤", s);
750
750
/// ```
751
- #[ stable( feature = "osstring_ascii" , since = "1.52 .0" ) ]
751
+ #[ stable( feature = "osstring_ascii" , since = "1.53 .0" ) ]
752
752
#[ inline]
753
753
pub fn make_ascii_uppercase ( & mut self ) {
754
754
self . inner . make_ascii_uppercase ( )
@@ -770,7 +770,7 @@ impl OsStr {
770
770
///
771
771
/// assert_eq!("grüße, jürgen ❤", s.to_ascii_lowercase());
772
772
/// ```
773
- #[ stable( feature = "osstring_ascii" , since = "1.52 .0" ) ]
773
+ #[ stable( feature = "osstring_ascii" , since = "1.53 .0" ) ]
774
774
pub fn to_ascii_lowercase ( & self ) -> OsString {
775
775
OsString :: from_inner ( self . inner . to_ascii_lowercase ( ) )
776
776
}
@@ -791,7 +791,7 @@ impl OsStr {
791
791
///
792
792
/// assert_eq!("GRüßE, JüRGEN ❤", s.to_ascii_uppercase());
793
793
/// ```
794
- #[ stable( feature = "osstring_ascii" , since = "1.52 .0" ) ]
794
+ #[ stable( feature = "osstring_ascii" , since = "1.53 .0" ) ]
795
795
pub fn to_ascii_uppercase ( & self ) -> OsString {
796
796
OsString :: from_inner ( self . inner . to_ascii_uppercase ( ) )
797
797
}
@@ -809,7 +809,7 @@ impl OsStr {
809
809
/// assert!(ascii.is_ascii());
810
810
/// assert!(!non_ascii.is_ascii());
811
811
/// ```
812
- #[ stable( feature = "osstring_ascii" , since = "1.52 .0" ) ]
812
+ #[ stable( feature = "osstring_ascii" , since = "1.53 .0" ) ]
813
813
#[ inline]
814
814
pub fn is_ascii ( & self ) -> bool {
815
815
self . inner . is_ascii ( )
@@ -829,7 +829,7 @@ impl OsStr {
829
829
/// assert!(OsString::from("Ferrös").eq_ignore_ascii_case("FERRöS"));
830
830
/// assert!(!OsString::from("Ferrös").eq_ignore_ascii_case("FERRÖS"));
831
831
/// ```
832
- #[ stable( feature = "osstring_ascii" , since = "1.52 .0" ) ]
832
+ #[ stable( feature = "osstring_ascii" , since = "1.53 .0" ) ]
833
833
pub fn eq_ignore_ascii_case < S : AsRef < OsStr > > ( & self , other : S ) -> bool {
834
834
self . inner . eq_ignore_ascii_case ( & other. as_ref ( ) . inner )
835
835
}
0 commit comments