Skip to content

Commit

Permalink
prepare release 0.1.1
Browse files Browse the repository at this point in the history
This is the first release under rust edition 2021. This update only contains minor efficiency improvements that take advantage of clippy recommendations and changes in edition 2021. There are no breaking api changes contained in this version, so it's only a minor version number increment
  • Loading branch information
lonnen committed Jan 12, 2023
1 parent 9522e25 commit ac92327
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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 = "mset"
version = "0.1.0" # remember to update html_root_url crate attribute
version = "0.1.1" # remember to update html_root_url crate attribute
description = "A mset / multiset / bag implementation"
keywords = ["mset", "multiset", "bag", "counter", "collection"]
categories = ["data-structures", "mathematics"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
mset = "0.1.0"
mset = "0.1.1"
```

Now, you can use mset:
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/mset/0.1.0")]
#![doc(html_root_url = "https://docs.rs/mset/0.1.1")]
//! A hash multiset implemented as a `HashMap` where the value is `usize`.
//!
//! A mset, multiset, or bag is a set that allows multiple occurances of an
Expand Down

0 comments on commit ac92327

Please sign in to comment.