From 98f0d7bf245e107a7e1f6bce0613eb10d38c30d4 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sat, 2 Apr 2022 15:00:31 +0900 Subject: [PATCH] Release 0.4.6 (#116) --- .github/workflows/release.yml | 7 ------- CHANGELOG.md | 11 ++++++++--- Cargo.toml | 6 ++---- 3 files changed, 10 insertions(+), 14 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3643a31..d2209e4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,19 +5,12 @@ on: tags: - v[0-9]+.* -env: - RUSTFLAGS: -Dwarnings - RUST_BACKTRACE: 1 - jobs: create-release: if: github.repository_owner == 'tokio-rs' runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - - name: Install Rust - run: rustup update stable - - run: cargo package - uses: taiki-e/create-gh-release-action@v1 with: changelog: CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 501a25c..6533268 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,13 @@ +# 0.4.6 (April 2, 2022) + +* Add `Slab::vacant_key` (#114) +* Fix stacked borrows violation in `Slab::get2_unchecked_mut` (#115) + # 0.4.5 (October 13, 2021) - * Add alternate debug output for listing items in the slab (#108) - * Fix typo in debug output of IntoIter (#109) - * Impl 'Clone' for 'Iter' (#110) +* Add alternate debug output for listing items in the slab (#108) +* Fix typo in debug output of IntoIter (#109) +* Impl 'Clone' for 'Iter' (#110) # 0.4.4 (August 06, 2021) diff --git a/Cargo.toml b/Cargo.toml index bc25be8..540de1a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,15 +6,13 @@ name = "slab" # - README.md # - Update CHANGELOG.md # - Create git tag -version = "0.4.5" +version = "0.4.6" authors = ["Carl Lerche "] edition = "2018" +rust-version = "1.31" license = "MIT" description = "Pre-allocated storage for a uniform data type" -documentation = "https://docs.rs/slab" -homepage = "https://github.com/tokio-rs/slab" repository = "https://github.com/tokio-rs/slab" -readme = "README.md" keywords = ["slab", "allocator", "no_std"] categories = ["memory-management", "data-structures", "no-std"] exclude = ["/.*"]