Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# bitpacking 0.9.3

- Performance improvements in BitPacker4x for ARM

# bitpacking 0.9.1

- Add strictly\_sorted variant of bitpackers which allow to compress sequence known to be strictly increasing (no equal element) in a slightly more compact format.

# bitpacking 0.8.2

- Much much faster compilation in debug mode. (#20)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bitpacking"
version = "0.9.2"
version = "0.9.3"
authors = ["Paul Masurel <paul.masurel@gmail.com>"]
license = "MIT"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ It makes it possible to compress/decompress :
Just add to your `Cargo.toml` :

```toml
bitpacking = "0.5"
bitpacking = "0.9"
```

For some bitpacking flavor and for some platform, the bitpacking crate
Expand Down