Skip to content

Commit

Permalink
Release 0.1.1 #18
Browse files Browse the repository at this point in the history
  • Loading branch information
xonixx committed Jul 31, 2020
1 parent 7ee0a86 commit 642be11
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ $ echo '["HTTP://EXAMPLE.COM/123",

```
$ jsqry
jsqry ver. 0.1.0
jsqry ver. 0.1.1
Usage: echo $JSON | jsqry 'query'
-1,--first return first result element
-h,--help print help and exit
Expand All @@ -117,15 +117,15 @@ https://gist.github.com/xonixx/d6066e83ec0773df248141440b18e8e4

## Install

Current version: [0.1.0](/~https://github.com/jsqry/jsqry-cli2/releases/tag/v0.1.0).
Current version: [0.1.1](/~https://github.com/jsqry/jsqry-cli2/releases/tag/v0.1.1).

Sorry, but only Linux x64 is supported at the moment. Hopefully this will improve.

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.1.0/jsqry-linux-amd64 -O/usr/local/bin/jsqry
wget /~https://github.com/jsqry/jsqry-cli2/releases/download/v0.1.1/jsqry-linux-amd64 -O/usr/local/bin/jsqry
chmod +x /usr/local/bin/jsqry
echo \"jsqry \$(jsqry -v) installed successfully\"
"
Expand Down
2 changes: 1 addition & 1 deletion jsqry-cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as os from "os";
import jsqry from "./jsqry.js";
import colorJson from "./colorJson.js";

const VERSION = "0.1.0";
const VERSION = "0.1.1";

// based on code from /~https://github.com/twardoch/svgop/blob/master/src/app/svgop-qjs.js
const utf8ArrayToStr = (function () {
Expand Down
4 changes: 2 additions & 2 deletions tests.tush
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
$ jsqry -v
| 0.1.0
| 0.1.1

$ jsqry -h
| jsqry ver. 0.1.0
| jsqry ver. 0.1.1
| Usage: echo $JSON | jsqry 'query'
| -1,--first return first result element
| -h,--help print help and exit
Expand Down

0 comments on commit 642be11

Please sign in to comment.