diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a915e8c..2be9c43 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.1" + ".": "0.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 8468b6b..6cb11c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.2.0](https://github.com/fortress-build/whirlwind/compare/v0.1.1...v0.2.0) (2025-01-17) + + +### Features + +* implement `Default` for `ShardMap` and `ShardSet` ([52bf3c8](https://github.com/fortress-build/whirlwind/commit/52bf3c859f2242a53828b0b9e225e5299167db58)), closes [#9](https://github.com/fortress-build/whirlwind/issues/9) + ## [0.1.1](https://github.com/fortress-build/whirlwind/compare/v0.1.0...v0.1.1) (2024-11-04) diff --git a/Cargo.lock b/Cargo.lock index a113867..e6a2ee2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -302,7 +302,7 @@ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" [[package]] name = "whirlwind" -version = "0.1.1" +version = "0.2.0" dependencies = [ "crossbeam-utils", "hashbrown", diff --git a/Cargo.toml b/Cargo.toml index 87092ea..d3f5942 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "whirlwind" description = "Collection of thread-safe, asynchronous data structures." authors = ["Will Hopkins "] -version = "0.1.1" +version = "0.2.0" edition = "2021" readme = "README.md" repository = "https://github.com/fortress-build/whirlwind"