Skip to content

Commit

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

### Features

* enable simd128 feature ([995ccac](995ccac))
  • Loading branch information
semantic-release-bot committed Apr 11, 2024
1 parent 995ccac commit 5ba8acb
Show file tree
Hide file tree
Showing 6 changed files with 545 additions and 538 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.3.4";
import { hash, verify } from "jsr:@denorg/scrypt@4.4.0";

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.3.4/cli hash <password>
deno run jsr:@denorg/scrypt@4.3.4/cli verify <password> <hash>
deno run jsr:@denorg/scrypt@4.4.0/cli hash <password>
deno run jsr:@denorg/scrypt@4.4.0/cli verify <password> <hash>
```

You can also install it globally using the following:

```bash
deno install -n scrypt jsr:@denorg/scrypt@4.3.4/cli
deno install -n scrypt jsr:@denorg/scrypt@4.4.0/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.3.4",
"version": "4.4.0",
"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.3.4/src/schema.json",
"$schema": "https://x.nest.land/eggs@4.4.0/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.3.4",
"version": "4.4.0",
"releaseType": null,
"unstable": false,
"unlisted": false,
Expand Down
Loading

0 comments on commit 5ba8acb

Please sign in to comment.