From 38b74c03c3f4a1dc37d2fa447e43b5f19da3dfb7 Mon Sep 17 00:00:00 2001 From: evanvosberg Date: Wed, 12 Feb 2020 12:48:14 +0100 Subject: [PATCH 1/2] Bump major reslease version. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0587636..b7686de 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "crypto-js", "title": "crypto-js", "description": "JavaScript library of crypto standards.", - "version": "3.3.0", + "version": "4.0.0", "homepage": "http://github.com/brix/crypto-js", "author": { "name": "Evan Vosberg", From ba083107c634dd5c4840fab743578176ea4340ce Mon Sep 17 00:00:00 2001 From: evanvosberg Date: Wed, 12 Feb 2020 12:54:38 +0100 Subject: [PATCH 2/2] Add release notes. --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index d1236a3..250c97c 100644 --- a/README.md +++ b/README.md @@ -212,6 +212,14 @@ console.log(decryptedData); // [{id: 1}, {id: 2}] ## Release notes +### 4.0.0 + +This is an update including breaking changes for some environments. + +In this version `Math.random()` has been replaced by the random methods of the native crypto module. + +For this reason CryptoJS might does not run in some JavaScript environments without native crypto module. Such as IE 10 or before or React Native. + ### 3.3.0 Rollback, `3.3.0` is the same as `3.1.9-1`.