diff --git a/string/CHANGES.md b/string/CHANGES.md index 6eddc7b9..90b32769 100644 --- a/string/CHANGES.md +++ b/string/CHANGES.md @@ -3,13 +3,14 @@ ## Unreleased - 2020-xx-xx -## 0.2.0 - 2020-12-31 +## 1.0.0 - 2020-12-31 * Update `bytes` dependency to `1`. -* Add array and slice of `u8` impls of TryFrom up to 32 in length. +* Add array and slice of `u8` impls of `TryFrom` up to 32 in length. * Rename `get_ref` to `as_bytes` and rename `into_inner` to `into_bytes`. * `ByteString::new` is now a `const fn`. * Crate is now `#[no_std]` compatible. + ## 0.1.5 - 2020-03-30 * Serde support diff --git a/string/Cargo.toml b/string/Cargo.toml index 9447ba4b..4e41b5ea 100644 --- a/string/Cargo.toml +++ b/string/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bytestring" -version = "0.2.0" +version = "1.0.0" authors = [ "Nikolay Kim ", "Rob Ede ", diff --git a/string/src/lib.rs b/string/src/lib.rs index 731a1200..168209fd 100644 --- a/string/src/lib.rs +++ b/string/src/lib.rs @@ -175,7 +175,7 @@ macro_rules! array_impls { } } -array_impls!(0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31); +array_impls!(0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32); impl fmt::Debug for ByteString { fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {