From 1babd329453664089cbdf459591879babfe0068f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 Mar 2024 20:17:45 +0000 Subject: [PATCH 1/2] chore: release Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 44 ++++++++++++++++++++++++++++++++++++++++++++ Cargo.toml | 2 +- 2 files changed, 45 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..93e2fb2 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,44 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.2.0](https://github.com/antiguru/flatcontainer/compare/v0.1.0...v0.2.0) - 2024-03-13 + +### Other +- Merge pull request [#23](https://github.com/antiguru/flatcontainer/pull/23) from antiguru/slice_implementations +- Rename CopyRegion to OwnedRegion and relax trait bounds +- Remove CopyOnto requirement for ReadItem +- Remove index parameter from columns region +- Add tests and cleanup minor findings +- Merge pull request [#16](https://github.com/antiguru/flatcontainer/pull/16) from antiguru/improvements +- Merge pull request [#17](https://github.com/antiguru/flatcontainer/pull/17) from antiguru/release-plz +- Integrate release-plz +- Documentation updates +- Fix warnings +- Update CI integration +- Relax Rust version to 1.65 +- Heap size +- Remove staging vector in codec +- StringRegion generic over inner region +- Code movement, documentation, +- Explicit column iterator; support copying iterators to columns +- Relax paste version, make columns region public +- Dictionary codec plus supporting infrastructure +- Fix tests for no default features +- Deduplication, columns, general improvements +- Copy by reference +- Update doc and convenience stuff +- Formatting +- More trait implementations +- Benchmark updates +- Documentation and performance improvements +- Add docs, utility features, option region +- Remove reserve_items from CopyOnto +- Make ReadItem: CopyOnto +- Optionally support serde +- Rework structure, tuple support, sizing +- Initial import diff --git a/Cargo.toml b/Cargo.toml index f87b80c..5c1789b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "flatcontainer" -version = "0.1.0" +version = "0.2.0" edition = "2021" authors = ["Moritz Hoffmann "] description = "A flat container representation for Rust" From deaf5a7639e906be2d503eee1b2b4b3bccb64e83 Mon Sep 17 00:00:00 2001 From: Moritz Hoffmann Date: Wed, 13 Mar 2024 16:19:08 -0400 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 31 +------------------------------ 1 file changed, 1 insertion(+), 30 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 93e2fb2..60c251d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,37 +8,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.2.0](https://github.com/antiguru/flatcontainer/compare/v0.1.0...v0.2.0) - 2024-03-13 -### Other +### Changes - Merge pull request [#23](https://github.com/antiguru/flatcontainer/pull/23) from antiguru/slice_implementations - Rename CopyRegion to OwnedRegion and relax trait bounds - Remove CopyOnto requirement for ReadItem - Remove index parameter from columns region -- Add tests and cleanup minor findings -- Merge pull request [#16](https://github.com/antiguru/flatcontainer/pull/16) from antiguru/improvements -- Merge pull request [#17](https://github.com/antiguru/flatcontainer/pull/17) from antiguru/release-plz -- Integrate release-plz -- Documentation updates -- Fix warnings -- Update CI integration -- Relax Rust version to 1.65 -- Heap size -- Remove staging vector in codec -- StringRegion generic over inner region -- Code movement, documentation, -- Explicit column iterator; support copying iterators to columns -- Relax paste version, make columns region public -- Dictionary codec plus supporting infrastructure -- Fix tests for no default features -- Deduplication, columns, general improvements -- Copy by reference -- Update doc and convenience stuff -- Formatting -- More trait implementations -- Benchmark updates -- Documentation and performance improvements -- Add docs, utility features, option region -- Remove reserve_items from CopyOnto -- Make ReadItem: CopyOnto -- Optionally support serde -- Rework structure, tuple support, sizing -- Initial import