From c7f5e9460aff86e5a16bf50d91ec738d7e1faae8 Mon Sep 17 00:00:00 2001 From: xonix Date: Mon, 20 Jul 2020 16:36:56 +0300 Subject: [PATCH] Release 0.1.0 #12 --- README.md | 6 +++--- jsqry-cli.js | 2 +- tests.tush | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 34674e1..a439a6e 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ $ echo '["HTTP://EXAMPLE.COM/123", ``` $ jsqry -jsqry ver. 0.0.2 +jsqry ver. 0.1.0 Usage: echo $JSON | jsqry 'query' -1,--first return first result element -h,--help print help and exit @@ -115,7 +115,7 @@ https://gist.github.com/xonixx/d6066e83ec0773df248141440b18e8e4 ## Install -Current version: [0.0.2](https://github.com/jsqry/jsqry-cli2/releases/tag/v0.0.2). +Current version: [0.1.0](https://github.com/jsqry/jsqry-cli2/releases/tag/v0.1.0). Sorry, but only Linux x64 is supported at the moment. Hopefully this will improve. @@ -123,7 +123,7 @@ To install or update the tool simply run the command below. ```bash $ sudo bash -e -c " -wget https://github.com/jsqry/jsqry-cli2/releases/download/v0.0.2/jsqry-linux-amd64 -O/usr/local/bin/jsqry +wget https://github.com/jsqry/jsqry-cli2/releases/download/v0.1.0/jsqry-linux-amd64 -O/usr/local/bin/jsqry chmod +x /usr/local/bin/jsqry echo \"jsqry \$(jsqry -v) installed successfully\" " diff --git a/jsqry-cli.js b/jsqry-cli.js index bad4e13..c238b73 100644 --- a/jsqry-cli.js +++ b/jsqry-cli.js @@ -3,7 +3,7 @@ import * as os from "os"; import jsqry from "./jsqry.js"; import colorJson from "./colorJson.js"; -const VERSION = "0.0.2"; +const VERSION = "0.1.0"; // based on code from https://github.com/twardoch/svgop/blob/master/src/app/svgop-qjs.js const utf8ArrayToStr = (function () { diff --git a/tests.tush b/tests.tush index 743f034..dc6c401 100644 --- a/tests.tush +++ b/tests.tush @@ -1,8 +1,8 @@ $ jsqry -v -| 0.0.2 +| 0.1.0 $ jsqry -h -| jsqry ver. 0.0.2 +| jsqry ver. 0.1.0 | Usage: echo $JSON | jsqry 'query' | -1,--first return first result element | -h,--help print help and exit