Skip to content

Commit

Permalink
bumped version to 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
wainwrightmark committed Sep 20, 2024
1 parent d317de8 commit 9d94a1d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 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 = "importunate"
version = "0.1.1"
version = "0.1.2"
authors = ["Mark Wainwright <[email protected]>"]
description = "Methods for returning random elements from an iterator."
documentation = "https://docs.rs/importunate"
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ Apply and manipulate permutations of small, const sized, distinct sets.
- `invert` (undo) a `Permutation`
- convert `to_le_byte_array` or `try_from_le_byte_array` to store in as few bytes as mathematically possible



`no_std` by default. Features for `serde` and `arbitrary`

The name of the crate is an anagram of 'permutation'.
Expand All @@ -25,7 +23,7 @@ This crate works with Cargo with a `Cargo.toml` like:

```toml
[dependencies]
importunate = "0.1.1"
importunate = "0.1.2"
```

## Getting started
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![cfg_attr(not(any(test, feature = "std")), no_std)]
#![doc(html_root_url = "https://docs.rs/importunate/0.1.1")]
#![doc(html_root_url = "https://docs.rs/importunate/0.1.2")]
#![deny(missing_docs)]
#![deny(warnings, dead_code, unused_imports, unused_mut)]
#![warn(clippy::pedantic)]
Expand Down

0 comments on commit 9d94a1d

Please sign in to comment.