Skip to content

Commit 5d6e119

Browse files
committed
(Draft) Release veresion 1.1.0
TODO insert release date.
1 parent e45a1ae commit 5d6e119

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ license = "Apache-2.0 / MIT"
66
name = "ascii"
77
readme = "README.md"
88
repository = "https://github.com/tomprogrammer/rust-ascii"
9-
version = "1.0.0"
9+
version = "1.1.0"
1010

1111
[dependencies]
1212
serde = { version = "1.0.25", optional = true }

README.md

+2-2
Original file line numberDiff line numberDiff 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

RELEASES.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
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+
113
Version 1.0.0 (2019-08-26)
214
==========================
315

0 commit comments

Comments
 (0)