Skip to content

Commit

Permalink
chore: prepare to release v0.1.2 (#59)
Browse files Browse the repository at this point in the history
### 0.1.2 (2021-08-01)

#### Bug Fixes

*   make debug assertions drop safe ([26d35a6](26d35a6))

#### Features

*   improve panics on thread ID bit exhaustion ([9ecb8e6](9ecb8e6))
  • Loading branch information
hawkw authored Aug 1, 2021
1 parent 30f2b1c commit 7aa23c6
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 10 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
<a name="0.1.2"></a>
### 0.1.2 (2021-08-01)


#### Bug Fixes

* make debug assertions drop safe ([26d35a69](https://github.com/hawkw/sharded-slab/commit/26d35a695c9e5d7c62ab07cc5e66a0c6f8b6eade))

#### Features

* improve panics on thread ID bit exhaustion ([9ecb8e61](https://github.com/hawkw/sharded-slab/commit/9ecb8e614f107f68b5c6ba770342ae72af1cd07b))



<a name="0.1.1"></a>
## 0.1.1 (2021-1-4)

Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "sharded-slab"
version = "0.1.1"
version = "0.1.2"
authors = ["Eliza Weisman <[email protected]>"]
edition = "2018"
documentation = "https://docs.rs/sharded-slab/0.0.9/sharded_slab"
documentation = "https://docs.rs/sharded-slab/0.1.2/sharded_slab"
homepage = "https://github.com/hawkw/sharded-slab"
repository = "https://github.com/hawkw/sharded-slab"
readme = "README.md"
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.1.1/sharded_slab
[docs-url]: https://docs.rs/sharded-slab/0.1.2/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
Expand Down Expand Up @@ -57,12 +57,12 @@ _data_ they store, but retaining any previously-allocated capacity. This
means that a [`Pool`] may be used to reuse a set of existing heap
allocations, reducing allocator load.

[`Slab`]: https://docs.rs/sharded-slab/0.0.9/sharded_slab/struct.Slab.html
[inserting]: https://docs.rs/sharded-slab/0.0.9/sharded_slab/struct.Slab.html#method.insert
[taking]: https://docs.rs/sharded-slab/0.0.9/sharded_slab/struct.Slab.html#method.take
[`Pool`]: https://docs.rs/sharded-slab/0.0.9/sharded_slab/struct.Pool.html
[create]: https://docs.rs/sharded-slab/0.0.9/sharded_slab/struct.Pool.html#method.create
[cleared]: https://docs.rs/sharded-slab/0.0.9/sharded_slab/trait.Clear.html
[`Slab`]: https://docs.rs/sharded-slab/0.1.2/sharded_slab/struct.Slab.html
[inserting]: https://docs.rs/sharded-slab/0.1.2/sharded_slab/struct.Slab.html#method.insert
[taking]: https://docs.rs/sharded-slab/0.1.2/sharded_slab/struct.Slab.html#method.take
[`Pool`]: https://docs.rs/sharded-slab/0.1.2/sharded_slab/struct.Pool.html
[create]: https://docs.rs/sharded-slab/0.1.2/sharded_slab/struct.Pool.html#method.create
[cleared]: https://docs.rs/sharded-slab/0.1.2/sharded_slab/trait.Clear.html
[object pool]: https://en.wikipedia.org/wiki/Object_pool_pattern

### Examples
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@
//! See [this page](implementation/index.html) for details on this crate's design
//! and implementation.
//!
#![doc(html_root_url = "https://docs.rs/sharded-slab/0.1.1")]
#![doc(html_root_url = "https://docs.rs/sharded-slab/0.1.2")]
#![warn(missing_debug_implementations, missing_docs, missing_doc_code_examples)]

#[macro_use]
Expand Down

0 comments on commit 7aa23c6

Please sign in to comment.