Skip to content

Commit

Permalink
prepare release 0.1.0
Browse files Browse the repository at this point in the history
This will be the last release under rust edition 2018. In addition to bumping to edition 2021, we also want to settle issues 17-26 before minting 1.0. From this point until 1.0 we'll use minor version numbers to indicate API changes and patch numbers for other updates
  • Loading branch information
lonnen committed Dec 30, 2021
1 parent 955886f commit fdc9eff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Add this to your `Cargo.toml`:

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

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.0.4")]
#![doc(html_root_url = "https://docs.rs/mset/0.1.0")]
//! 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 fdc9eff

Please sign in to comment.