From 992af505a564021206d3f0d16f4e3e7a0a430c6f Mon Sep 17 00:00:00 2001 From: GnomedDev Date: Sun, 10 Mar 2024 18:40:12 +0000 Subject: [PATCH] Bump version to 0.4.2 --- CHANGELOG.md | 6 +++++- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d5dc3cd..0043248 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ +# 0.4.2 + +- Implements `FromStr` for `FixedString`. + # 0.4.1 -- Implements `clone_from` for FixedString and FixedArray. +- Implements `clone_from` for `FixedString` and `FixedArray`. # 0.4 diff --git a/Cargo.lock b/Cargo.lock index f46747e..87d5b8e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -65,7 +65,7 @@ dependencies = [ [[package]] name = "small-fixed-array" -version = "0.4.1" +version = "0.4.2" dependencies = [ "serde", "serde_json", diff --git a/Cargo.toml b/Cargo.toml index 927c070..09cadc4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "small-fixed-array" description = "A crate providing fixed length immutable collections with a low memory footprint." repository = "https://github.com/GnomedDev/small-fixed-array" -version = "0.4.1" +version = "0.4.2" edition = "2021" license = "MIT"