Skip to content

Commit

Permalink
chore(release): 4.4.4 [skip ci]
Browse files Browse the repository at this point in the history
## [4.4.4](v4.4.3...v4.4.4) (2024-04-11)

### Performance Improvements

* remove unused wasm-bindgen feature ([5049f16](5049f16))
  • Loading branch information
semantic-release-bot committed Apr 11, 2024
1 parent 5049f16 commit 10c0c76
Show file tree
Hide file tree
Showing 6 changed files with 574 additions and 576 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function that doesn't require any privileges.
Import the `hash` and/or `verify` functions and use them:

```ts
import { hash, verify } from "jsr:@denorg/scrypt@4.4.3";
import { hash, verify } from "jsr:@denorg/scrypt@4.4.4";

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

```bash
deno run jsr:@denorg/scrypt@4.4.3/cli hash <password>
deno run jsr:@denorg/scrypt@4.4.3/cli verify <password> <hash>
deno run jsr:@denorg/scrypt@4.4.4/cli hash <password>
deno run jsr:@denorg/scrypt@4.4.4/cli verify <password> <hash>
```

You can also install it globally using the following:

```bash
deno install -n scrypt jsr:@denorg/scrypt@4.4.3/cli
deno install -n scrypt jsr:@denorg/scrypt@4.4.4/cli
```

Then, the package is available to run:
Expand Down
2 changes: 1 addition & 1 deletion deno.jsonc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@denorg/scrypt",
"version": "4.4.3",
"version": "4.4.4",
"exports": {
".": "./mod.ts",
"./cli": "./cli.ts",
Expand Down
4 changes: 2 additions & 2 deletions egg.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"$schema": "https://x.nest.land/eggs@4.4.3/src/schema.json",
"$schema": "https://x.nest.land/eggs@4.4.4/src/schema.json",
"name": "scrypt",
"entry": "./mod.ts",
"description": "This is a wasm-based (using rust-crypto) implementation of scrypt key derivation function that doesn't require any privileges.",
"homepage": "https://github.com/denorg/scrypt",
"version": "4.4.3",
"version": "4.4.4",
"releaseType": null,
"unstable": false,
"unlisted": false,
Expand Down
Loading

0 comments on commit 10c0c76

Please sign in to comment.