File tree Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ license = "Apache-2.0 / MIT"
66name = " ascii"
77readme = " README.md"
88repository = " https://github.com/tomprogrammer/rust-ascii"
9- version = " 1.0 .0"
9+ version = " 1.1 .0"
1010
1111[dependencies ]
1212serde = { version = " 1.0.25" , optional = true }
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ dependencies section in `Cargo.toml`:
1010
1111``` toml
1212[dependencies ]
13- ascii = " 1.0 "
13+ ascii = " 1.1 "
1414```
1515
1616## Using ascii without libstd
@@ -30,7 +30,7 @@ just add the following dependency declaration in `Cargo.toml`:
3030
3131``` toml
3232[dependencies ]
33- ascii = { version = " 1.0 " , default-features = false , features = [" alloc" ] }
33+ ascii = { version = " 1.1 " , default-features = false , features = [" alloc" ] }
3434```
3535
3636## Minimum supported Rust version
Original file line number Diff line number Diff line change 1+ Version 1.1.0 (2022-06-XX)
2+ ==========================
3+ * Add alloc feature.
4+ This enables ` AsciiString ` and methods that take or return ` Box<[AsciiStr]> ` in ` !#[no_std] ` -mode.
5+ * Implement ` From<AsciiChar> ` for ` AsciiString ` .
6+ * Add ` AsciiString::insert_str() ` .
7+ * Add ` AsciiStr::into_ascii_string() ` and ` AsciiString::into_boxed_ascii_str() ` .
8+ * Implement ` From<Box<AsciiStr>> ` for ` AsciiString ` and vice versa.
9+ * Make ` AsciiString::new() ` , ` AsciiChar::from_ascii_unchecked() ` and many other methods ` const fn ` .
10+ * Add ` AsciiChar::try_new() ` and ` AsciiStr::new() ` .
11+ * Require Rust 1.58.0.
12+
113Version 1.0.0 (2019-08-26)
214==========================
315
You can’t perform that action at this time.
0 commit comments