io: Add Changelog

Done in preparation for an initial v0.1.0 release of the new `io` crate.

Add a changelog file with a brief description of whats in the initial release.
This commit is contained in:
Tobin C. Harding 2024-01-08 10:56:52 +11:00
parent 83397c465c
commit 1d00d47b32
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 15 additions and 0 deletions

15
io/CHANGELOG.md Normal file
View File

@ -0,0 +1,15 @@
# 0.1 - Initial Release - 2023-01-18
Create the `io` crate, add basic I/O traits, types, and implementations.
Traits:
- `Read`
- `BufRead`
- `Write`
Types:
- `Take`
- `Cursor`
- `Sink`