Skip to content

Commit

Permalink
Fix repo links
Browse files Browse the repository at this point in the history
  • Loading branch information
fosskers committed Jul 3, 2021
1 parent 63b0a5b commit 9d63e5c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "validated"
version = "0.1.0"
version = "0.1.1"
authors = ["Colin Woodbury <[email protected]>", "John Archer <[email protected]>"]
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"]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 9d63e5c

Please sign in to comment.