Skip to content

Commit 480880c

Browse files
committed
prepare release
1 parent 188b041 commit 480880c

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file.
44

55
This project adheres to [Semantic Versioning](https://semver.org).
66

7+
## [1.1.0] - 2025-09-29
8+
9+
### Changed
10+
11+
- With `Cursor::read_exact`, if there aren't enough bytes remaining, the position will be set to the end of the buffer. This mirrors the same behavior change in `std::io::Cursor` introduced in Rust 1.80 (see [rust-lang/rust#125404]).
12+
- MSRV updated to Rust 1.70.
13+
- Internal improvement: computed start positions for chunks are now stored in a `OnceLock` on the `BufList` rather than being recomputed each time a `Cursor` is constructed. In the case where there might be many `Cursor` instances on the same `&BufList`, this allows for start positions to be shared. Thanks to [inanna-malick](https://github.com/inanna-malick) for your first cntribution!
14+
15+
### Fixed
16+
17+
- Replaced obsolete `doc_auto_cfg` with `doc_cfg`, to fix Rust nightly builds with the `doc_cfg` flag enabled.
18+
19+
[rust-lang/rust#125404]: https://github.com/rust-lang/rust/pull/125404
20+
721
## [1.0.3] - 2023-04-09
822

923
- Documentation improvements.
@@ -54,6 +68,7 @@ This project adheres to [Semantic Versioning](https://semver.org).
5468

5569
- Initial release.
5670

71+
[1.1.0]: https://github.com/sunshowers-code/buf-list/releases/tag/1.1.0
5772
[1.0.3]: https://github.com/sunshowers-code/buf-list/releases/tag/1.0.3
5873
[1.0.2]: https://github.com/sunshowers-code/buf-list/releases/tag/1.0.2
5974
[1.0.1]: https://github.com/sunshowers-code/buf-list/releases/tag/1.0.1

rustfmt.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
style_edition = "2024"
1+
style_edition = "2024"

0 commit comments

Comments
 (0)