Skip to content

Commit

Permalink
Release 1.0.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
orlp committed Jul 3, 2021
1 parent 2f4120c commit f4f2d37
Show file tree
Hide file tree
Showing 3 changed files with 10 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.4" # Remember to grep and update version everywhere.
version = "1.0.5" # Remember to grep and update version everywhere.
edition = "2018"
authors = ["Orson Peters <orsonpeters@gmail.com>"]
description = "Slotmap data structure"
Expand Down
8 changes: 8 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
Version 1.0.5
=============

- Added fuzzing for extra testing.
- Fixed an issue that could cause a segfault when using `HopSlotMap::retain`
that had the same underlying cause as the fix in 1.0.4 but was missed.


Version 1.0.4
=============

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.4")]
#![doc(html_root_url = "https://docs.rs/slotmap/1.0.5")]
#![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 f4f2d37

Please sign in to comment.