Skip to content

Commit

Permalink
Release 1.0.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
orlp committed Jul 1, 2021
1 parent dddf5bd commit fb19178
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "slotmap"
version = "1.0.3" # Remember to grep and update version everywhere.
version = "1.0.4" # Remember to grep and update version everywhere.
edition = "2018"
authors = ["Orson Peters <orsonpeters@gmail.com>"]
description = "Slotmap data structure"
Expand Down
14 changes: 14 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,17 @@
Version 1.0.4
=============

- Fixed an issue that could cause a segfault when using `HopSlotMap::drain`.
All versions 0.3+ are affected, and thus yanked.


Version 1.0.3
=============

- Made `get_disjoint_mut` available on stable Rust 1.51 and up.
- Added unchecked variants for the getters on `SparseSecondaryMap`.


Version 1.0.2
=============

Expand Down Expand Up @@ -48,6 +56,12 @@ Version 1.0.0
- Moved `SlotMap` to the `basic` module.


Version 0.4.1
=============

- Backport of fix made in 1.0.4.


Version 0.4.0
=============

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/slotmap/1.0.3")]
#![doc(html_root_url = "https://docs.rs/slotmap/1.0.4")]
#![crate_name = "slotmap"]
#![cfg_attr(all(nightly, feature = "unstable"), feature(try_reserve))]
#![cfg_attr(all(not(test), not(feature = "std")), no_std)]
Expand Down

0 comments on commit fb19178

Please sign in to comment.