diff --git a/CHANGELOG.md b/CHANGELOG.md index 8b60cd2..f058807 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ Entries are listed in reverse chronological order. +## 0.2.2 + +* Make `batch::Item: Clone + Debug` and add `batch::Item::verify_single` + for fallback verification when batch verification fails. + ## 0.2.1 * Update `Cargo.toml` metadata. diff --git a/Cargo.toml b/Cargo.toml index 1ee894d..c216003 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ edition = "2018" # - Update html_root_url # - Update CHANGELOG.md # - Create git tag. -version = "0.2.1" +version = "0.2.2" authors = ["Henry de Valence ", "Deirdre Connolly "] readme = "README.md" license = "MIT OR Apache-2.0" diff --git a/src/lib.rs b/src/lib.rs index 2bffe86..a3bbbc1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url = "https://docs.rs/redjubjub/0.2.1")] +#![doc(html_root_url = "https://docs.rs/redjubjub/0.2.2")] #![cfg_attr(feature = "nightly", feature(external_doc))] #![cfg_attr(feature = "nightly", doc(include = "../README.md"))] #![deny(missing_docs)]