Skip to content

Latest commit

 

History

History
53 lines (33 loc) · 1.61 KB

CHANGELOG.md

File metadata and controls

53 lines (33 loc) · 1.61 KB

Change Log

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

Changelog entries will contain a link to the pull request implementing that change, where applicable.

Unreleased - ReleaseDate

0.1.4 - 2023-12-14

Added

  • Added a From<Cow<'_, [u8]>> impl for OwnedBuffer (#5

0.1.3 - 2023-06-07

  • Added an impl From<OwnedBuffer> for Vec<u8> (#3)

0.1.2 - 2023-06-06

Fixed

  • When slicing a mmapped buffer, the resulting offsets would be relative to the start of the file and not the start of the slice (#1)

0.1.1 - 2023-05-18

Added

  • Added more PartialEq trait implementations to OwnedBuffer

0.1.0 - 2023-05-18

Added

  • Created an OwnedBuffer type which is either an in-memory buffer (bytes::Bytes) or a mmapped buffer (memmap2::Mmap)