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/"