diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ba55d0..1822be2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.2](https://github.com/antiguru/flatcontainer/compare/v0.3.1...v0.3.2) - 2024-05-28 + +### Other +- Thinking about relating owned types and read items ([#31](https://github.com/antiguru/flatcontainer/pull/31)) +- Introduce reborrow to enable lifetime variance ([#32](https://github.com/antiguru/flatcontainer/pull/32)) + ## [0.3.1](https://github.com/antiguru/flatcontainer/compare/v0.3.0...v0.3.1) - 2024-05-24 ### Other diff --git a/Cargo.toml b/Cargo.toml index f1d1f1d..7d57634 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "flatcontainer" -version = "0.3.1" +version = "0.4.0" edition = "2021" authors = ["Moritz Hoffmann "] description = "A flat container representation for Rust" diff --git a/README.md b/README.md index 2eb1bec..d24acc2 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ A flat container for Rust. ```toml [dependencies] -flatcontainer = "0.3" +flatcontainer = "0.4" ``` ## Example