Commit 9b541817a3ed7a748ae6bd67f35416d16c8ec2a5

constantoine 2022-05-05T12:03:41

Up version Signed-off-by: constantoine <cleo.rebert@gmail.com>

diff --git a/Cargo.toml b/Cargo.toml
index 0e621a2..2886619 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "totp-rs"
-version = "1.1.0"
+version = "1.2.0"
 authors = ["Cleo Rebert <cleo.rebert@gmail.com>"]
 edition = "2021"
 readme = "README.md"
diff --git a/README.md b/README.md
index 7102b2b..967f72f 100644
--- a/README.md
+++ b/README.md
@@ -17,7 +17,7 @@ With optional feature "serde_support", library-defined types will be Deserialize
 Add it to your `Cargo.toml`:
 ```toml
 [dependencies]
-totp-rs = "~1.1"
+totp-rs = "~1.2"
 ```
 You can then do something like:
 ```Rust
@@ -45,7 +45,7 @@ println!("{}", token);
 Add it to your `Cargo.toml`:
 ```toml
 [dependencies.totp-rs]
-version = "~1.1"
+version = "~1.2"
 features = ["qr"]
 ```
 You can then do something like:
@@ -67,6 +67,6 @@ println!("{}", code);
 Add it to your `Cargo.toml`:
 ```toml
 [dependencies.totp-rs]
-version = "~1.1"
+version = "~1.2"
 features = ["serde_support"]
 ```