From 72b28002085da36b3a6aeff5673595c4683c3e40 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Fri, 16 Sep 2022 19:37:49 +0000 Subject: [PATCH] chore(release): 4.2.1 [skip ci] ## [4.2.1](https://github.com/denorg/scrypt/compare/v4.2.0...v4.2.1) (2022-09-16) ### Bug Fixes * remove wee_alloc as it's unmaintained ([#11](https://github.com/denorg/scrypt/issues/11)) ([2bac73a](https://github.com/denorg/scrypt/commit/2bac73aed8548e7cb91ec462b3b87cea4a950a5c)) --- README.md | 8 ++++---- egg.json | 4 ++-- lib/scrypt_bench.ts | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index ba56ac4..7529128 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.2.0/mod.ts"; +import { hash, verify } from "https://deno.land/x/scrypt@v4.2.1/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.2.0/cli.ts hash -deno run https://deno.land/x/scrypt@v4.2.0/cli.ts verify +deno run https://deno.land/x/scrypt@v4.2.1/cli.ts hash +deno run https://deno.land/x/scrypt@v4.2.1/cli.ts verify ``` You can also install it globally using the following: ```bash -deno install -n scrypt https://deno.land/x/scrypt@v4.2.0/cli.ts +deno install -n scrypt https://deno.land/x/scrypt@v4.2.1/cli.ts ``` Then, the package is available to run: diff --git a/egg.json b/egg.json index 2fd87af..d92e359 100644 --- a/egg.json +++ b/egg.json @@ -1,10 +1,10 @@ { - "$schema": "https://x.nest.land/eggs@4.2.0/src/schema.json", + "$schema": "https://x.nest.land/eggs@4.2.1/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.2.0", + "version": "4.2.1", "releaseType": null, "unstable": false, "unlisted": false, diff --git a/lib/scrypt_bench.ts b/lib/scrypt_bench.ts index a42c988..c03791b 100644 --- a/lib/scrypt_bench.ts +++ b/lib/scrypt_bench.ts @@ -2,7 +2,7 @@ * Just a few simple benchmarks * @todo document the benchmarks better */ -import { scrypt as scryptOld } from "https://deno.land/x/scrypt@v4.2.0/lib/scrypt.ts"; +import { scrypt as scryptOld } from "https://deno.land/x/scrypt@v4.2.1/lib/scrypt.ts"; import { scrypt } from "./scrypt.ts"; const extremeSalt = `IkjpewCbNm4A7cuY1VL9KC3y92blEthtLf9Cet6uEoTxz5cyF660da2zeci42fYwVCVwsKogETMCXupSZZAUh6a80ZnnBTk17B3UTCSVQPpYfL8GktJ2BDokE7ox2hV8OwwUT1hFvCuJqwHZpRvZw1RNCO6HfukPdgMHhq9rWLTXXUNwrIjlmkeydKGFJz2mS1xFcvLQtle4olJVK0SXXXYHAigBfpYxxSC2acvoxuacWcXhzSSRZAMysU2J7zDfXdxnYoqz50rvmvi36g7t2WDSAdzZ44JpxVcc3bYD7xYI3UgfVMPOfeblzwJi455QIurHzDuXEUNS0tZX1kWwZ0XcNSCwGzPs7WSVHxHc0KVUNhwSz16wDYFK4pYeA29ThXgFiFICSLVshiRrCfuzRthW7IZtRa9efcf4nFJsVBk51jpHY0b8CLhARrQU92mlBULwmJKe8DgST3Vn9rva98E9jk4y7NfSb4i9g74OjuFQ8yRO3BHksBZoVtBl4wUppM2hsLt72LZKA0ZsaWW7dG9a1bgWUkBBRG5OwzARenDqQIA2Gp5V4JsXuUUYNDylCelkLUVfS7hB1AZHtnIgwVqTaGDxl7nNZGKpAx6MrOd40laTUhrtZo4prwFZROHPNVJGQk2PQDgwqxX5SWoBTK8cCCzrbGBfHq9r8BwBvSVdeQ7bgjUW2j7NCapHHZ6filzxZaVsLsEITGZNcK0t5DdSnaDLRxyOn21ncKVIyZfOdlvpytvqpQaH5RWu4G50IPkEevue8KenXpGLP0pmEseBf6eX02rlN9arqZ4HJWmD7RbAChs7OJwfKlNIawb0V3G3N0eJeXiRsYOk10GIb91pyZRLSr2AJDtiWCcMuOWZfgLVHIrUVftfh9iXmRk2RAT1sigivbNtdqcF2cVvbTVMUCe7MIPRt4dGqwOQqdReGjPy9p1CNfKfJBIgW0xhYsOGMkcUqSurHxPl4wTOnMBx8vEZQsqJCZomENA1`;