Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 868 Bytes

CHANGELOG.md

File metadata and controls

28 lines (20 loc) · 868 Bytes

Changelog

Unreleased

  • Added Path::to_str and PathBuf::to_str.

0.7.0

  • Added File type and Ext4::open. This can be used to read parts of files rather than reading the whole file at once with Ext4::read. If the std feature is enabled, File impls Read and Seek.
  • Added impl From<Ext4Error> for std::io::Error.
  • Added impl From<Corrupt> for Ext4Error.
  • Added impl From<Incompatible> for Ext4Error.
  • Made BytesDisplay public.
  • Made the library more robust against arithmetic overflow.

0.6.1

  • Fixed a panic when loading an invalid superblock.

0.6.0

  • MSRV increased to 1.81.
  • The error types now unconditionally implement core::error::Error.
  • The IoError trait has been removed. Ext4Read::read now returns Box<dyn Error + Send + Sync + 'static>, and that same type is now stored in Ext4Error::Io.