File tree 3 files changed +15
-3
lines changed
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"
6
6
name = " ascii"
7
7
readme = " README.md"
8
8
repository = " https://github.com/tomprogrammer/rust-ascii"
9
- version = " 1.0 .0"
9
+ version = " 1.1 .0"
10
10
11
11
[dependencies ]
12
12
serde = { 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`:
10
10
11
11
``` toml
12
12
[dependencies ]
13
- ascii = " 1.0 "
13
+ ascii = " 1.1 "
14
14
```
15
15
16
16
## Using ascii without libstd
@@ -30,7 +30,7 @@ just add the following dependency declaration in `Cargo.toml`:
30
30
31
31
``` toml
32
32
[dependencies ]
33
- ascii = { version = " 1.0 " , default-features = false , features = [" alloc" ] }
33
+ ascii = { version = " 1.1 " , default-features = false , features = [" alloc" ] }
34
34
```
35
35
36
36
## 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
+
1
13
Version 1.0.0 (2019-08-26)
2
14
==========================
3
15
You can’t perform that action at this time.
0 commit comments