Skip to content

Commit

Permalink
fix incorrect date in CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
nodesocket committed Apr 20, 2022
1 parent 016efa2 commit b865639
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CHANGELOG
=========

## 1.1.4 - *4/30/2022*
## 1.1.4 - *4/20/2022*

- Documentation cleanup.
- Bump copyrights to 2022.
Expand Down
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,18 @@ export JSONLITE_DATA_DIR=/tmp/jsonlite.data

> set \<json\> - Writes a json document and returns the document id
````shell
````
➜ jsonlite set '{"name":"John Doe","active":true,"permissions":{"read":true,"write":false}}'
666B81D6-3F8A-4D57-BA3F-11FA8FC47246
````

`set` also supports piping into it:

````shell
````
echo '{"key":"value"}' | jsonlite set
4472B861-4C10-4C0A-A63B-E5D45AA679C0
````
````shell
````
jsonlite set < file.json
9DF4DC1F-121E-46DC-B580-E1663B645AED
````
Expand All @@ -58,7 +58,7 @@ jsonlite set < file.json

> get \<document-id\> - Retrieves a json document by document id
````shell
````
➜ jsonlite get 666B81D6-3F8A-4D57-BA3F-11FA8FC47246
{
"active": true,
Expand All @@ -74,7 +74,7 @@ jsonlite set < file.json

> count - Total number of json documents in the database
````shell
````
➜ jsonlite count
293
````
Expand All @@ -83,28 +83,28 @@ jsonlite set < file.json

> delete \<document-id\> - Deletes a json document by document id
````shell
````
➜ jsonlite delete 666B81D6-3F8A-4D57-BA3F-11FA8FC47246
````

### drop

> drop (--force) - Drops the database
````shell
````
➜ jsonlite drop
Drop database '/tmp/jsonlite.data'? [Y/n] Y
````

````shell
````
➜ jsonlite drop --force
````

### help

> help - Displays help
````shell
````
➜ jsonlite help
Usage: jsonlite command <command-specific-options>
Expand All @@ -122,7 +122,7 @@ Usage: jsonlite command <command-specific-options>

> version - Displays the current version
````shell
````
➜ jsonlite version
1.1.4
````
Expand All @@ -131,7 +131,7 @@ Usage: jsonlite command <command-specific-options>

> default - Displays the current version, configuration, and help
```shell
```
➜ jsonlite
JSONlite 1.1.4
json formatter: json_reformat (fastest)
Expand Down

0 comments on commit b865639

Please sign in to comment.