From 0e9da3e9fc4e12e7911a24babbc136e3b4e1a133 Mon Sep 17 00:00:00 2001 From: Eliza Weisman Date: Mon, 2 Aug 2021 09:27:30 -0700 Subject: [PATCH] chore: prepare to release v0.1.3 ### v0.1.3 (2021-08-02) #### Bug Fixes * set up MSRV in CI (#61) ([dfcc9080](https://github.com/hawkw/sharded-slab/commit/dfcc9080a62d08e359f298a9ffb0f275928b83e4), closes [#60](https://github.com/hawkw/sharded-slab/issues/60)) --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 4 ++-- README.md | 14 +++++++------- src/lib.rs | 2 +- 4 files changed, 20 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e5d06d..f14d056 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ + +### v0.1.3 (2021-08-02) + + +#### Bug Fixes + +* set up MSRV in CI (#61) ([dfcc9080](https://github.com/hawkw/sharded-slab/commit/dfcc9080a62d08e359f298a9ffb0f275928b83e4), closes [#60](https://github.com/hawkw/sharded-slab/issues/60)) + + + ### 0.1.2 (2021-08-01) diff --git a/Cargo.toml b/Cargo.toml index 27d16ec..6ec6d99 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "sharded-slab" -version = "0.1.2" +version = "0.1.3" authors = ["Eliza Weisman "] edition = "2018" -documentation = "https://docs.rs/sharded-slab/0.1.2/sharded_slab" +documentation = "https://docs.rs/sharded-slab/0.1.3/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 7306a55..2eab4ed 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.1.2/sharded_slab +[docs-url]: https://docs.rs/sharded-slab/0.1.3/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 @@ -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.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 +[`Slab`]: https://docs.rs/sharded-slab/0.1.3/sharded_slab/struct.Slab.html +[inserting]: https://docs.rs/sharded-slab/0.1.3/sharded_slab/struct.Slab.html#method.insert +[taking]: https://docs.rs/sharded-slab/0.1.3/sharded_slab/struct.Slab.html#method.take +[`Pool`]: https://docs.rs/sharded-slab/0.1.3/sharded_slab/struct.Pool.html +[create]: https://docs.rs/sharded-slab/0.1.3/sharded_slab/struct.Pool.html#method.create +[cleared]: https://docs.rs/sharded-slab/0.1.3/sharded_slab/trait.Clear.html [object pool]: https://en.wikipedia.org/wiki/Object_pool_pattern ### Examples diff --git a/src/lib.rs b/src/lib.rs index 21ba548..224312c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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.2")] +#![doc(html_root_url = "https://docs.rs/sharded-slab/0.1.3")] #![warn(missing_debug_implementations, missing_docs, missing_doc_code_examples)] #[macro_use]