diff --git a/CHANGELOG.md b/CHANGELOG.md index 0017aef..6422433 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,19 @@ 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-29 + +### Other +- Bump CodSpeedHQ/action from 2 to 3 ([#63](https://github.com/antiguru/flatcontainer/pull/63)) +- Support bencher and codspeed ([#60](https://github.com/antiguru/flatcontainer/pull/60)) +- Rename offset to index to better capture its meaning ([#55](https://github.com/antiguru/flatcontainer/pull/55)) +- 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 e3e305f..e82d9af 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"