diff --git a/doc/api.md b/doc/api.md
index b0f4545..66d29d5 100644
--- a/doc/api.md
+++ b/doc/api.md
@@ -14,7 +14,7 @@ a (un)ciphering object.
Note default settings are performing an aes-256-crt ciphering.
**See**: [https://nodejs.org/api/crypto.html](https://nodejs.org/api/crypto.html) for further information.
-**Version**: 1.1.3
+**Version**: 1.2.0
### factory(secret, [options]) : [CryptObject
](#module_cryptObjects..CryptObject) ⏏
diff --git a/index.js b/index.js
index f11fcf2..bae2e65 100644
--- a/index.js
+++ b/index.js
@@ -1,4 +1,4 @@
-/*! Copyright (c) 2019 Nicolas Barriquand . MIT licensed. */
+/*! Copyright (c) 2019-2020 Nicolas Barriquand . MIT licensed. */
/**
*
@@ -16,7 +16,7 @@
* Note default settings are performing an aes-256-crt ciphering.
*
* @module json-cipher-value
- * @version 1.1.3
+ * @version 1.2.0
* @see {@link https://nodejs.org/api/crypto.html} for further information.
*/
diff --git a/package.json b/package.json
index 526df34..b4661f2 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "json-cipher-value",
- "version": "1.2.0-beta.0",
+ "version": "1.2.0",
"description": "Recursively encrypt/decrypt object values retaining their types.",
"bin": {
"cipher-json": "./bin/cli.js"