From: Chris Duncan Date: Sat, 15 Mar 2025 19:46:54 +0000 (-0700) Subject: Patch version. X-Git-Tag: v3.1.3^0 X-Git-Url: https://zoso.dev/?a=commitdiff_plain;h=4c276d58b50f15198620548456dfa82730d0a410;p=nano-pow.git Patch version. --- diff --git a/CHANGELOG.md b/CHANGELOG.md index 30b31ba..dd5bd56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,58 @@ SPDX-FileCopyrightText: 2025 Chris Duncan SPDX-License-Identifier: GPL-3.0-or-later --> +## v3.1.3 + +### Notable Changes + +#### Changelog + +You're reading it! + +#### More options for CLI input + +The command line tool now accepts input from stdin. This enables scripting +operations like redirects + +```console +nano-pow < hashes.txt +``` + +and pipes. + +```console +cat hashes.txt | nano-pow +``` + +#### Get output in JSON format + +JSON is an exteremely flexible data structure notation, and now the command line +tool can output results in the JSON format. + +```console +nano-pow --json +# output +# [ +# { +# "blockhash": , +# "work": +# } +# ] +``` + +#### Other Changes + +Updated CLI documentation for new input/output features. + +Refactored WebGL draw shader to align with WebGPU compute shader on BLAKE2b +initialization. + +Rename file of test blockhashes since they are not seeds. + +Update README license section. + + + ## v3.1.2 ### Notable Changes diff --git a/package-lock.json b/package-lock.json index d5940e1..2d9278f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "nano-pow", - "version": "3.1.2", + "version": "3.1.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "nano-pow", - "version": "3.1.2", + "version": "3.1.3", "license": "(GPL-3.0-or-later AND MIT)", "bin": { "nano-pow": "dist/cli.js" diff --git a/package.json b/package.json index c754f61..ea0c79b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nano-pow", - "version": "3.1.2", + "version": "3.1.3", "description": "Proof-of-work generation and validation with WebGPU/WebGL for Nano cryptocurrency.", "keywords": [ "nemo",