Skip to content

Commit 3db4b69

Browse files
chore(release): 4.4.3 [skip ci]
## [4.4.3](v4.4.2...v4.4.3) (2024-04-11) ### Performance Improvements * remove talc ([4945c18](4945c18))
1 parent 02e725e commit 3db4b69

File tree

6 files changed

+574
-576
lines changed

6 files changed

+574
-576
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function that doesn't require any privileges.
1616
Import the `hash` and/or `verify` functions and use them:
1717

1818
```ts
19-
import { hash, verify } from "jsr:@denorg/scrypt@4.4.2";
19+
import { hash, verify } from "jsr:@denorg/scrypt@4.4.3";
2020

2121
const hashResult = hash("password");
2222
const verifyResult = verify("password", hashResult);
@@ -37,14 +37,14 @@ dpx scrypt verify <password> <hash>
3737
Alternatively, you can use it directly from the CLI by using `deno run`:
3838

3939
```bash
40-
deno run jsr:@denorg/scrypt@4.4.2/cli hash <password>
41-
deno run jsr:@denorg/scrypt@4.4.2/cli verify <password> <hash>
40+
deno run jsr:@denorg/scrypt@4.4.3/cli hash <password>
41+
deno run jsr:@denorg/scrypt@4.4.3/cli verify <password> <hash>
4242
```
4343

4444
You can also install it globally using the following:
4545

4646
```bash
47-
deno install -n scrypt jsr:@denorg/scrypt@4.4.2/cli
47+
deno install -n scrypt jsr:@denorg/scrypt@4.4.3/cli
4848
```
4949

5050
Then, the package is available to run:

deno.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@denorg/scrypt",
3-
"version": "4.4.2",
3+
"version": "4.4.3",
44
"exports": {
55
".": "./mod.ts",
66
"./cli": "./cli.ts",

egg.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"$schema": "https://x.nest.land/eggs@4.4.2/src/schema.json",
2+
"$schema": "https://x.nest.land/eggs@4.4.3/src/schema.json",
33
"name": "scrypt",
44
"entry": "./mod.ts",
55
"description": "This is a wasm-based (using rust-crypto) implementation of scrypt key derivation function that doesn't require any privileges.",
66
"homepage": "https://github.com/denorg/scrypt",
7-
"version": "4.4.2",
7+
"version": "4.4.3",
88
"releaseType": null,
99
"unstable": false,
1010
"unlisted": false,

0 commit comments

Comments
 (0)