1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-24 00:01:11 +01:00
actix-net/bytestring/CHANGES.md

62 lines
1.3 KiB
Markdown
Raw Normal View History

2019-12-07 04:59:39 +01:00
# Changes
2023-04-01 06:24:40 +02:00
## Unreleased - 2023-xx-xx
2023-03-03 23:36:13 +01:00
2023-03-03 23:41:09 +01:00
## 1.3.0 - 2023-03-03
2023-02-26 17:24:48 +01:00
- Implement `AsRef<ByteString>` for `ByteString`.
2022-11-12 14:19:09 +01:00
## 1.2.1 - 2022-11-12
2023-03-03 23:36:13 +01:00
2022-11-12 14:19:09 +01:00
- Fix `#[no_std]` compatibility. [#471]
[#471]: https://github.com/actix/actix-net/pull/471
2022-11-07 21:22:47 +01:00
## 1.2.0 - 2022-11-07
2023-03-03 23:36:13 +01:00
2022-11-07 21:16:46 +01:00
- Add `ByteString::slice_ref` which can safely slice a `ByteString` into a new one with zero copy. [#470]
2022-11-07 21:22:47 +01:00
- Minimum supported Rust version (MSRV) is now 1.57.
2022-11-07 21:16:46 +01:00
[#470]: https://github.com/actix/actix-net/pull/470
## 1.1.0 - 2022-06-11
2023-03-03 23:36:13 +01:00
- Implement `From<Box<str>>` for `ByteString`. [#458]
- Implement `Into<String>` for `ByteString`. [#458]
2022-03-02 17:40:11 +01:00
- Minimum supported Rust version (MSRV) is now 1.49.
[#458]: https://github.com/actix/actix-net/pull/458
2020-12-30 23:11:50 +01:00
## 1.0.0 - 2020-12-31
2023-03-03 23:36:13 +01:00
2021-12-18 03:49:23 +01:00
- Update `bytes` dependency to `1`.
- 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
2020-03-30 07:54:40 +02:00
2023-03-03 23:36:13 +01:00
- Serde support
2020-01-15 00:06:02 +01:00
## 0.1.4 - 2020-01-14
2020-01-15 00:06:02 +01:00
2023-03-03 23:36:13 +01:00
- Fix `AsRef<str>` impl
## 0.1.3 - 2020-01-13
2023-03-03 23:36:13 +01:00
- Add `PartialEq<T: AsRef<str>>`, `AsRef<[u8]>` impls
## 0.1.2 - 2019-12-22
2023-03-03 23:36:13 +01:00
2021-12-18 03:49:23 +01:00
- Fix `new()` method
- Make `ByteString::from_static()` and `ByteString::from_bytes_unchecked()` methods const.
## 0.1.1 - 2019-12-07
2019-12-07 06:51:47 +01:00
2023-03-03 23:36:13 +01:00
- Fix hash impl
2019-12-07 04:59:39 +01:00
## 0.1.0 - 2019-12-07
2023-03-03 23:36:13 +01:00
2021-12-18 03:49:23 +01:00
- Initial release