From 6220ff03146e9947df8c0c918c73c40f2c09e9ef Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 8 Jul 2024 17:50:49 +0000 Subject: [PATCH] chore: release --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0017aef..f047f4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.0](https://github.com/antiguru/flatcontainer/compare/v0.5.0...v0.6.0) - 2024-07-08 + +### Other +- Only output throughput if BYTES is set ([#56](https://github.com/antiguru/flatcontainer/pull/56)) +- Simplify offset iterators and enable clone ([#53](https://github.com/antiguru/flatcontainer/pull/53)) +- use OffsetContainer iter ([#52](https://github.com/antiguru/flatcontainer/pull/52)) +- Rename slice_copy to slice_owned ([#51](https://github.com/antiguru/flatcontainer/pull/51)) +- Rename CopyIter to PushIter ([#50](https://github.com/antiguru/flatcontainer/pull/50)) +- Separate data storage ([#19](https://github.com/antiguru/flatcontainer/pull/19)) + ## [0.5.0](https://github.com/antiguru/flatcontainer/compare/v0.4.1...v0.5.0) - 2024-06-26 ### Other diff --git a/Cargo.toml b/Cargo.toml index 3810565..e0713f2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "flatcontainer" -version = "0.5.0" +version = "0.6.0" edition = "2021" authors = ["Moritz Hoffmann "] description = "A flat container representation for Rust"