Skip to content

Commit 10c0c76

Browse files
chore(release): 4.4.4 [skip ci]
## [4.4.4](v4.4.3...v4.4.4) (2024-04-11) ### Performance Improvements * remove unused wasm-bindgen feature ([5049f16](5049f16))
1 parent 5049f16 commit 10c0c76

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.3";
19+
import { hash, verify } from "jsr:@denorg/scrypt@4.4.4";
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.3/cli hash <password>
41-
deno run jsr:@denorg/scrypt@4.4.3/cli verify <password> <hash>
40+
deno run jsr:@denorg/scrypt@4.4.4/cli hash <password>
41+
deno run jsr:@denorg/scrypt@4.4.4/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.3/cli
47+
deno install -n scrypt jsr:@denorg/scrypt@4.4.4/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.3",
3+
"version": "4.4.4",
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.3/src/schema.json",
2+
"$schema": "https://x.nest.land/eggs@4.4.4/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.3",
7+
"version": "4.4.4",
88
"releaseType": null,
99
"unstable": false,
1010
"unlisted": false,

0 commit comments

Comments
 (0)