Skip to content

Commit 7076757

Browse files
chore(release): 4.4.2 [skip ci]
## [4.4.2](v4.4.1...v4.4.2) (2024-04-11) ### Bug Fixes * deno publish not working due to dirty git tree ([3e475c6](3e475c6)) * don't change scrypto version in the benchmark on release ([86a468d](86a468d))
1 parent 86a468d commit 7076757

File tree

5 files changed

+9
-9
lines changed

5 files changed

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

lib/scrypt_bench.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Just a few simple benchmarks
33
* @todo document the benchmarks better
44
*/
5-
import { scrypt as scryptOld } from "https://deno.land/x/[email protected].0/lib/scrypt.ts";
5+
import { scrypt as scryptOld } from "https://deno.land/x/[email protected].2/lib/scrypt.ts";
66
import { scrypt } from "./scrypt.ts";
77
import { scrypt as scryptNodeRaw } from "node:crypto";
88
import { scrypt as scryptoRaw } from "https://deno.land/x/[email protected]/main.ts";

mod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @module scrypt
33
* @author oplik0
4-
* @version 4.4.1
4+
* @version 4.4.2
55
*/
66

77
import { timingSafeEqual } from "./deps.ts";

0 commit comments

Comments
 (0)