From 0326a863284ce58421ac809b230710329eae9574 Mon Sep 17 00:00:00 2001 From: evanvosberg Date: Thu, 22 Jul 2021 14:51:34 +0300 Subject: [PATCH 1/2] Bump version. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 014d83a..6726ec7 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "crypto-js", "title": "crypto-js", "description": "JavaScript library of crypto standards.", - "version": "4.1.0", + "version": "4.1.1", "homepage": "http://github.com/brix/crypto-js", "author": { "name": "Evan Vosberg", From 81ed5629ddfd3c5ec6689921060bc91eb4d51c91 Mon Sep 17 00:00:00 2001 From: evanvosberg Date: Thu, 22 Jul 2021 14:52:29 +0300 Subject: [PATCH 2/2] Update release notes. --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 6f55b03..23795aa 100644 --- a/README.md +++ b/README.md @@ -212,6 +212,12 @@ console.log(decryptedData); // [{id: 1}, {id: 2}] ## Release notes +### 4.1.1 + +Fix module order in bundled release. + +Include the browser field in the released package.json. + ### 4.1.0 Added url safe variant of base64 encoding. [357](https://github.com/brix/crypto-js/pull/357)