Skip to content

Commit 571f7f3

Browse files
committed
v1.1.5
1 parent b865639 commit 571f7f3

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
CHANGELOG
22
=========
33

4+
## 1.1.5 - *7/24/2022*
5+
6+
- Documentation cleanup.
7+
48
## 1.1.4 - *4/20/2022*
59

610
- Documentation cleanup.

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ export JSONLITE_DATA_DIR=/tmp/jsonlite.data
4949
echo '{"key":"value"}' | jsonlite set
5050
4472B861-4C10-4C0A-A63B-E5D45AA679C0
5151
````
52+
53+
and reading from a file:
54+
5255
````
5356
jsonlite set < file.json
5457
9DF4DC1F-121E-46DC-B580-E1663B645AED
@@ -124,7 +127,7 @@ Usage: jsonlite command <command-specific-options>
124127
125128
````
126129
➜ jsonlite version
127-
1.1.4
130+
1.1.5
128131
````
129132

130133
### default
@@ -133,7 +136,7 @@ Usage: jsonlite command <command-specific-options>
133136
134137
```
135138
➜ jsonlite
136-
JSONlite 1.1.4
139+
JSONlite 1.1.5
137140
json formatter: json_reformat (fastest)
138141
data directory: /tmp/jsonlite.data
139142

jsonlite.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
set -eo pipefail; [[ $TRACE ]] && set -x
2020

21-
readonly VERSION="1.1.4"
21+
readonly VERSION="1.1.5"
2222
export JSONLITE_DATA_DIR=${JSONLITE_DATA_DIR:="$PWD/jsonlite.data"}
2323

2424
jsonlite_version() {

0 commit comments

Comments
 (0)