From 5f087e7fb9f6966346d684f3658339339a43b9c4 Mon Sep 17 00:00:00 2001 From: Thomas Date: Tue, 4 Jul 2017 22:31:15 +0200 Subject: [PATCH] Version 1.0.1 --- Cargo.toml | 2 +- README.md | 4 ++-- src/lib.rs | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fdc9687..03a41a9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "iban_validate" # Note: When updating, also update in lib.rs and README.md -version = "1.0.0" +version = "1.0.1" authors = ["Thomas den Hollander "] include = [ "**/*.rs", diff --git a/README.md b/README.md index 80558a8..9fd6791 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ The crate can be found on [crates.io](https://crates.io/crates/iban_validate). T dependency: [dependencies] - iban_validate = "1.0.0" + iban_validate = "1.0.1" ## Functionality This crate provides an easy way to validate an IBAN (International Bank Account Number). To do so, you can use the @@ -33,7 +33,7 @@ assert_eq!(account.get_bban(), "500105175407324931"); ``` [`parse()`]: https://doc.rust-lang.org/std/primitive.str.html#method.parse -[`validate_bban()`]: https://docs.rs/iban_validate/1.0.0/iban/struct.Iban.html#method.validate_bban +[`validate_bban()`]: https://docs.rs/iban_validate/1.0.1/iban/struct.Iban.html#method.validate_bban ## Documentation The full documentation is available at [docs.rs](https://docs.rs/iban_validate/). diff --git a/src/lib.rs b/src/lib.rs index f9b0dd1..5586476 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -33,7 +33,7 @@ //! [`validate_bban()`]: struct.Iban.html#method.validate_bban #![deny(missing_docs)] -#![doc(html_root_url = "https://docs.rs/iban_validate/1.0.0")] +#![doc(html_root_url = "https://docs.rs/iban_validate/1.0.1")] extern crate regex; #[macro_use]