diff --git a/Cargo.toml b/Cargo.toml index 804b591..0203c18 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "validated" -version = "0.1.0" +version = "0.1.1" authors = ["Colin Woodbury ", "John Archer "] edition = "2018" description = "The cumulative sibling of `Result` and `Either`." -homepage = "https://github.com/fosskers/validation" -repository = "https://github.com/fosskers/validation" +homepage = "https://github.com/fosskers/validated" +repository = "https://github.com/fosskers/validated" readme = "README.md" license = "MIT" keywords = ["validation", "errors"] diff --git a/src/lib.rs b/src/lib.rs index 43f8837..252343f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -91,7 +91,7 @@ //! [cats]: https://typelevel.org/cats/datatypes/validated.html #![warn(missing_docs)] -#![doc(html_root_url = "https://docs.rs/validated/0.1.0")] +#![doc(html_root_url = "https://docs.rs/validated/0.1.1")] use crate::Validated::{Fail, Good}; use nonempty::NonEmpty;