From 8325a26b06a3a682c2c18df9a22bbe3f5f6e6f27 Mon Sep 17 00:00:00 2001 From: Laurence Tratt Date: Sun, 24 Nov 2024 09:28:29 +0000 Subject: [PATCH] Prepare a 0.2.1 release. --- CHANGES.md | 6 ++++++ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 806ced8..85e3655 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,9 @@ +# sparsevec 0.2.1 (2024-11-24) + +* Optimise the creation of a sparsevec: when used, for example, for grmtools' + grammars, this can be a substantial (e.g. in one example over 30x) speedup. + + # sparsevec 0.2.0 (2022-07-25) * Move the backing storage (consisting of `PackedVec`s and `Vob`s) from `usize` diff --git a/Cargo.toml b/Cargo.toml index 5c6461f..88e16c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "sparsevec" description = "Compress vectors using row displacement" -version = "0.2.0" +version = "0.2.1" edition = "2018" authors = ["Lukas Diekmann "] repository = "https://github.com/softdevteam/sparsevec/"