Bumped version number in README.md

This commit is contained in:
Cléo Rebert 2020-08-09 07:39:53 +02:00
parent b4c1b5d43c
commit 730a767b84
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "totp-rs"
version = "0.6.0"
version = "0.6.1"
authors = ["Cleo Rebert <cleo.rebert@gmail.com>"]
edition = "2018"
readme = "README.md"

View File

@ -15,7 +15,7 @@ With optionnal feature "serde_support", library-defined types will be Deserializ
Add it to your `Cargo.toml`:
```toml
[dependencies]
totp-rs = "~0.5"
totp-rs = "~0.6"
```
You can then do something like:
```Rust
@ -43,7 +43,7 @@ println!("{}", token);
Add it to your `Cargo.toml`:
```toml
[dependencies.totp-rs]
version = "~0.5"
version = "~0.6"
features = ["qr"]
```
You can then do something like:
@ -65,6 +65,6 @@ println!("{}", code);
Add it to your `Cargo.toml`:
```toml
[dependencies.totp-rs]
version = "~0.5"
version = "~0.6"
features = ["serde_support"]
```