Bumped version number in README.md
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
diff --git a/Cargo.toml b/Cargo.toml
index 8c2978d..b6e3fb2 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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"
diff --git a/README.md b/README.md
index 689a66b..3a2d444 100644
--- a/README.md
+++ b/README.md
@@ -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"]
```