diff --git a/CHANGELOG.md b/CHANGELOG.md index a0a5bce..c659052 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ + +### 0.0.7 (2019-12-06) + + +#### Bug Fixes + +* **Config:** compensate for 0 being a valid TID ([b601f5d9](b601f5d9)) +* **DefaultConfig:** + * const overflow on 32-bit ([74d42dd1](74d42dd1), closes [#10](10)) + * wasted bit patterns on 64-bit ([8cf33f66](8cf33f66)) + + + ## 0.0.6 (2019-11-08) diff --git a/Cargo.toml b/Cargo.toml index a4c29f5..c9157ba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "sharded-slab" -version = "0.0.6" +version = "0.0.7" authors = ["Eliza Weisman "] edition = "2018" -documentation = "https://docs.rs/sharded-slab/0.0.6/sharded_slab" +documentation = "https://docs.rs/sharded-slab/0.0.7/sharded_slab" homepage = "https://github.com/hawkw/sharded-slab" repository = "https://github.com/hawkw/sharded-slab" readme = "README.md" diff --git a/README.md b/README.md index 49fc40e..57dce18 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ A lock-free concurrent slab. [crates-badge]: https://img.shields.io/crates/v/sharded-slab.svg [crates-url]: https://crates.io/crates/sharded-slab [docs-badge]: https://docs.rs/sharded-slab/badge.svg -[docs-url]: https://docs.rs/sharded-slab/0.0.6/sharded_slab +[docs-url]: https://docs.rs/sharded-slab/0.0.7/sharded_slab [ci-badge]: https://github.com/hawkw/sharded-slab/workflows/CI/badge.svg [ci-url]: https://github.com/hawkw/sharded-slab/actions?workflow=CI [license-badge]: https://img.shields.io/crates/l/sharded-slab @@ -35,7 +35,7 @@ optimization, and there may still be some lurking bugs. First, add this to your `Cargo.toml`: ```toml -sharded-slab = "0.0.6" +sharded-slab = "0.0.7" ``` ### Examples