From c4ac207b8f266ff3becd123f693f07536b97d088 Mon Sep 17 00:00:00 2001 From: "Jesse A. Tov" Date: Wed, 1 Dec 2021 13:40:00 -0600 Subject: [PATCH] (cargo-release) version 0.3.2 --- CHANGELOG.md | 5 ++++- Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c8d0147..68c526e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ The format is based on [Keep a Changelog] and this project adheres to ## [Next Release] +## [0.3.2] - 2021-12-01 + ## [0.3.1] - 2021-11-30 ### Added @@ -74,7 +76,8 @@ The format is based on [Keep a Changelog] and this project adheres to Initial release. -[Next Release]: +[Next Release]: +[0.3.2]: [0.3.1]: [0.2.4]: [0.2.3]: diff --git a/Cargo.toml b/Cargo.toml index 488433f..3594791 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "weak-table" -version = "0.3.1" +version = "0.3.2" authors = ["Jesse A. Tov "] description = "Weak hash maps and sets" repository = "https://github.com/tov/weak-table-rs" diff --git a/src/lib.rs b/src/lib.rs index b1cde61..6851e7b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -141,7 +141,7 @@ //! } //! ``` -#![doc(html_root_url = "https://docs.rs/weak-table/0.3.1")] +#![doc(html_root_url = "https://docs.rs/weak-table/0.3.2")] #![cfg_attr(not(feature = "std"), no_std)]