Skip to content

Commit

Permalink
Version 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasdenH committed Jul 4, 2017
1 parent 049f02b commit 5f087e7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
include = [
"**/*.rs",
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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/).
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit 5f087e7

Please sign in to comment.