From 9834597a66d9f889f64404e43f664ece4f9addd8 Mon Sep 17 00:00:00 2001 From: GnomedDev Date: Tue, 2 Apr 2024 00:57:31 +0100 Subject: [PATCH] Bump version to 0.4.4 --- CHANGELOG.md | 4 ++++ Cargo.lock | 2 +- Cargo.toml | 4 +++- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2413a7b..ab13ab8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 0.4.4 + +- Documents Minimum Supported Rust Version + # 0.4.3 - Implements `std::error::Error` for `InvalidLength` and `InvalidStrLength`. diff --git a/Cargo.lock b/Cargo.lock index 99d18bd..d29c6df 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -65,7 +65,7 @@ dependencies = [ [[package]] name = "small-fixed-array" -version = "0.4.3" +version = "0.4.4" dependencies = [ "serde", "serde_json", diff --git a/Cargo.toml b/Cargo.toml index 916aa60..a5bef4f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,8 +2,10 @@ 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" +keywords = ["array", "string", "collection", "low-memory"] +category = ["data-structures"] rust-version = "1.70" -version = "0.4.3" +version = "0.4.4" edition = "2021" license = "MIT"