diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e09d07f..07a0c9d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ TweetNaCl.js Changelog ====================== +v0.11.0 +------- + +* Implement `nacl.sign.keyPair.fromSeed` to enable creation of sign key pairs + deterministically from a 32-byte seed. (It behaves like + [libsodium's](http://doc.libsodium.org/public-key_cryptography/public-key_signatures.html) + `crypto_sign_seed_keypair`: the seed becomes a secret part of the secret key.) + +* Fast version now has an improved hash implementation that is 2x-5x faster. + +* Fixed benchmarks, which may have produced incorrect measurements. + + v0.10.1 ------- diff --git a/bower.json b/bower.json index a5ef9ce1..21c8bf17 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "tweetnacl", - "version": "0.10.1", + "version": "0.11.0", "homepage": "https://dchest.github.io/tweetnacl-js", "authors": [ "TweetNaCl.js Contributors" diff --git a/package.json b/package.json index 86765cd9..19083639 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tweetnacl", - "version": "0.10.1", + "version": "0.11.0", "description": "Port of TweetNaCl cryptographic library to JavaScript", "main": "nacl.js", "directories": {