diff --git a/CHANGELOG.md b/CHANGELOG.md index 1396ba5..5e565db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## v0.6.1 / 2017-07-03 +### Fixed +- Typo on variable kmac_256 type definition. #12 + ## v0.6.0 / 2017-06-15 ### Added - cSHAKE method. diff --git a/bower.json b/bower.json index 922cd2e..d5b6fef 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "js-sha3", - "version": "0.6.0", + "version": "0.6.1", "main": ["src/sha3.js"], "ignore": [ "samples", diff --git a/build/sha3.min.js b/build/sha3.min.js index 2f02fa9..1d47e7d 100644 --- a/build/sha3.min.js +++ b/build/sha3.min.js @@ -1,7 +1,7 @@ /** * [js-sha3]{@link https://github.com/emn178/js-sha3} * - * @version 0.6.0 + * @version 0.6.1 * @author Chen, Yi-Cyuan [emn178@gmail.com] * @copyright Chen, Yi-Cyuan 2015-2017 * @license MIT diff --git a/package.json b/package.json index b201f71..305172d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "js-sha3", - "version": "0.6.0", + "version": "0.6.1", "description": "A simple SHA-3 / Keccak / Shake hash function for JavaScript supports UTF-8 encoding.", "main": "src/sha3.js", "typings": "index", diff --git a/src/sha3.js b/src/sha3.js index 9be6644..9fba01c 100644 --- a/src/sha3.js +++ b/src/sha3.js @@ -1,7 +1,7 @@ /** * [js-sha3]{@link https://github.com/emn178/js-sha3} * - * @version 0.6.0 + * @version 0.6.1 * @author Chen, Yi-Cyuan [emn178@gmail.com] * @copyright Chen, Yi-Cyuan 2015-2017 * @license MIT