From 67fe8b2dac12abe4fdc2cbcff7fe10fe0a49e068 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 15 Aug 2022 19:09:30 +0000 Subject: [PATCH] chore(release): 4.2.0 [skip ci] # [4.2.0](https://github.com/denorg/scrypt/compare/v4.1.3...v4.2.0) (2022-08-15) ### Bug Fixes * remove old wasm file ([a659580](https://github.com/denorg/scrypt/commit/a6595806e28d6c01ebca06017339f869a2f58dc3)) ### Features * move to std/crypto for sha256 ([d15a704](https://github.com/denorg/scrypt/commit/d15a704a17df46b80239115f06f65a0547587b0c)) * use wee_alloc ([3ad9732](https://github.com/denorg/scrypt/commit/3ad973275236c91143fc8d8fc24ea10f7cd3739c)) --- README.md | 8 ++++---- egg.json | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 9a4d90c..ba56ac4 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ This is a wasm-based (using rust-crypto) implementation of scrypt key derivation Import the `hash` and/or `verify` functions and use them: ```ts -import { hash, verify } from "https://deno.land/x/scrypt@v4.1.3/mod.ts"; +import { hash, verify } from "https://deno.land/x/scrypt@v4.2.0/mod.ts"; const hashResult = hash("password"); const verifyResult = verify("password", hashResult); @@ -35,14 +35,14 @@ dpx scrypt verify Alternatively, you can use it directly from the CLI by using `deno run`: ```bash -deno run https://deno.land/x/scrypt@v4.1.3/cli.ts hash -deno run https://deno.land/x/scrypt@v4.1.3/cli.ts verify +deno run https://deno.land/x/scrypt@v4.2.0/cli.ts hash +deno run https://deno.land/x/scrypt@v4.2.0/cli.ts verify ``` You can also install it globally using the following: ```bash -deno install -n scrypt https://deno.land/x/scrypt@v4.1.3/cli.ts +deno install -n scrypt https://deno.land/x/scrypt@v4.2.0/cli.ts ``` Then, the package is available to run: diff --git a/egg.json b/egg.json index d89d6c9..2fd87af 100644 --- a/egg.json +++ b/egg.json @@ -1,10 +1,10 @@ { - "$schema": "https://x.nest.land/eggs@4.1.3/src/schema.json", + "$schema": "https://x.nest.land/eggs@4.2.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.1.3", + "version": "4.2.0", "releaseType": null, "unstable": false, "unlisted": false,