From 38e4e081b9db7e93b8178c27223a7bbbf27bdb25 Mon Sep 17 00:00:00 2001 From: Laurence Tratt Date: Tue, 18 Mar 2025 13:24:13 +0000 Subject: [PATCH] Prepare a 0.2.2 release. --- CHANGES.md | 6 ++++++ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 85e3655..dca6f4b 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,9 @@ +# sparsevec 0.2.2 (2025-03-18) + +* Add an optional bincode dependency, which can be used as an alternative to + serde for encoding / decoding. + + # sparsevec 0.2.1 (2024-11-24) * Optimise the creation of a sparsevec: when used, for example, for grmtools' diff --git a/Cargo.toml b/Cargo.toml index 5f7681b..cc757b0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "sparsevec" description = "Compress vectors using row displacement" -version = "0.2.1" +version = "0.2.2" edition = "2018" authors = ["Lukas Diekmann "] repository = "https://github.com/softdevteam/sparsevec/"