Skip to content

Commit

Permalink
version 0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
lonnen committed May 12, 2020
1 parent 172df1a commit 4f06e1a
Show file tree
Hide file tree
Showing 2 changed files with 2 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 = "mset"
version = "0.0.2" # remember to update html_root_url crate attribute
version = "0.0.3" # 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 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.0.2")]
#![doc(html_root_url = "https://docs.rs/mset/0.0.3")]
//! 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 element. This
Expand Down

0 comments on commit 4f06e1a

Please sign in to comment.