Skip to content

Commit

Permalink
chore(release): 4.3.3 [skip ci]
Browse files Browse the repository at this point in the history
## [4.3.3](v4.3.2...v4.3.3) (2024-03-03)

### Bug Fixes

* export format and hmac for JSR ([6e4abf0](6e4abf0))
* re-export types in mod.ts ([68c52d2](68c52d2))
  • Loading branch information
semantic-release-bot committed Mar 3, 2024
1 parent 6e4abf0 commit b9f6a04
Show file tree
Hide file tree
Showing 5 changed files with 562 additions and 612 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/[email protected].2";
import { hash, verify } from "jsr:@denorg/[email protected].3";

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/[email protected].2/cli hash <password>
deno run jsr:@denorg/[email protected].2/cli verify <password> <hash>
deno run jsr:@denorg/[email protected].3/cli hash <password>
deno run jsr:@denorg/[email protected].3/cli verify <password> <hash>
```

You can also install it globally using the following:

```bash
deno install -n scrypt jsr:@denorg/[email protected].2/cli
deno install -n scrypt jsr:@denorg/[email protected].3/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.2",
"version": "4.3.3",
"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/[email protected].2/src/schema.json",
"$schema": "https://x.nest.land/[email protected].3/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.2",
"version": "4.3.3",
"releaseType": null,
"unstable": false,
"unlisted": false,
Expand Down
Loading

0 comments on commit b9f6a04

Please sign in to comment.