Skip to content

Commit

Permalink
chore: prepare to release v0.1.7
Browse files Browse the repository at this point in the history
### v0.1.7 (2023-10-04)

#### Bug Fixes

*   index out of bounds in `get()` and `get_owned()` (#88) (fdbc930)
* **unique_iter:**  prevent panics if a slab is empty (#88) (bd599e0,
  closes #73)
  • Loading branch information
hawkw committed Oct 4, 2023
1 parent 5599621 commit 40579b9
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
<a name="v0.1.7"></a>
### v0.1.7 (2023-10-04)


#### Bug Fixes

* index out of bounds in `get()` and `get_owned()` (#88) ([fdbc930f](https://github.com/hawkw/sharded-slab/commit/fdbc930fb14b0f6f8b77cd6efdad5a1bdf8d3c04))
* **unique_iter:** prevent panics if a slab is empty (#88) ([bd599e0b](https://github.com/hawkw/sharded-slab/commit/bd599e0b2a60a953f25f27ba1fa86682150e05c2), closes [#73](https://github.com/hawkw/sharded-slab/issues/73))



<a name="0.1.6"></a>
## 0.1.6 (2023-09-27)

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.6"
version = "0.1.7"
authors = ["Eliza Weisman <[email protected]>"]
edition = "2018"
documentation = "https://docs.rs/sharded-slab/0.1.4/sharded_slab"
documentation = "https://docs.rs/sharded-slab/"
homepage = "https://github.com/hawkw/sharded-slab"
repository = "https://github.com/hawkw/sharded-slab"
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 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.6/sharded_slab
[docs-url]: https://docs.rs/sharded-slab/latest
[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 All @@ -35,7 +35,7 @@ optimization, and there may still be some lurking bugs.
First, add this to your `Cargo.toml`:

```toml
sharded-slab = "0.1.6"
sharded-slab = "0.1.7"
```

This crate provides two types, [`Slab`] and [`Pool`], which provide slightly
Expand Down

0 comments on commit 40579b9

Please sign in to comment.