Skip to content

Commit

Permalink
chore: prepare to release v0.1.6
Browse files Browse the repository at this point in the history
#### Features

*   publicly export `UniqueIter` (#87)
    ([e4d6482](e4d6482),
    closes [#77](#77))

#### Bug Fixes

*   use a smaller `CustomConfig` for 32-bit tests (#84)
    ([828ffff](828ffff),
    closes [#82](#82))
  • Loading branch information
hawkw committed Sep 27, 2023
1 parent e4d6482 commit d2cff79
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 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.6"></a>
## 0.1.6 (2023-09-27)


#### Features

* publicly export `UniqueIter` (#87) ([e4d6482d](https://github.com/hawkw/sharded-slab/commit/e4d6482db05d5767b47eae1b0217faad30f2ebd5), closes [#77](https://github.com/hawkw/sharded-slab/issues/77))

#### Bug Fixes

* use a smaller `CustomConfig` for 32-bit tests (#84) ([828ffff9](https://github.com/hawkw/sharded-slab/commit/828ffff9f82cfc41ed66b4743563c4dddc97c1ce), closes [#82](https://github.com/hawkw/sharded-slab/issues/82))



<a name="0.1.5"></a>
## 0.1.5 (2023-08-28)

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 = "sharded-slab"
version = "0.1.5"
version = "0.1.6"
authors = ["Eliza Weisman <eliza@buoyant.io>"]
edition = "2018"
documentation = "https://docs.rs/sharded-slab/0.1.4/sharded_slab"
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.4/sharded_slab
[docs-url]: https://docs.rs/sharded-slab/0.1.6/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 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.1"
sharded-slab = "0.1.6"
```

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

0 comments on commit d2cff79

Please sign in to comment.