Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.2 KB

CHANGELOG.md

File metadata and controls

37 lines (28 loc) · 1.2 KB

v0.3.2 (2024-08-02)

  • TarArchive::entries is now #[must_use]

v0.3.1 (2024-05-03)

  • More sanity checks with malformed Tar archives.

v0.3.0 (2024-05-03)

  • MSRV is now 1.76 stable
  • added support for more Tar archives
    • 256 character long filename support (prefix + name)
    • add support for space terminated numbers
    • non-null terminated names
    • iterate over directories: read regular files from directories
    • more info: #10
  • TarArchive[Ref]::new now returns a result
  • added unstable feature with enhanced functionality for nightly compilers
    • error types implement core::error::Error
  • various bug fixes and code improvements
  • better error reporting / less panics

Special thanks to the following external contributors or helpers:

v0.2.0 (2023-04-11)

  • MSRV is 1.60.0
  • bitflags bump: 1.x -> 2.x
  • few internal code improvements (less possible panics)
  • Mode::to_flags now returns a Result
  • Feature all was removed. Use alloc instead.