Skip to content

Commit

Permalink
Prep for v3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Caligatio committed Oct 10, 2022
1 parent 4821cbf commit c1c26cd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# jsSHA - ChangeLog

## 3.3.0 (2022-10-10)

- `.update()` method now returns a reference to the jsSHA object to allow for
method chaining (#100, thanks @ADTC!).
- Correct bad URL in README (#99, thanks @jbjulia!).

## 3.2.0 (2020-12-07)

- Added ESM versions of all variants (thanks wKovacs64!).
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ Example to calculate the SHA-512 of "This is a test":

```javascript
const shaObj = new jsSHA("SHA-512", "TEXT", { encoding: "UTF8" });
/* .update() can be chained */
shaObj.update("This is").update(" a ");
shaObj.update("test");
const hash = shaObj.getHash("HEX");
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jssha",
"version": "3.2.0",
"version": "3.3.0",
"description": "jsSHA implements the complete Secure Hash Standard (SHA) family (SHA-1, SHA-224/256/384/512, SHA3-224/256/384/512, SHAKE128/256, cSHAKE128/256, and KMAC128/256) with HMAC",
"main": "./dist/sha.js",
"exports": {
Expand Down

0 comments on commit c1c26cd

Please sign in to comment.