Skip to content

Commit

Permalink
1.1.2 release. see CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
nodesocket committed Jan 27, 2021
1 parent 6928d34 commit f781aa6
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
CHANGELOG
=========

## 1.1.2 - *1/26/2021*

- Documentation cleanup.
- Bump copyrights to 2021.

## 1.1.1 - *9/23/2017*

- Changed text from `set is using` to `json formatter` in `jsonlite_info()`.
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2017 Justin Keller
Copyright 2021 Justin Keller

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

##### A simple, self-contained, serverless, zero-configuration, json document store.

JSONlite sandboxes the current working directory similar to SQLite. The JSONlite data directory is named `jsonlite.data` by default, and each json document is validated and saved pretty printed as a uuid.
JSONlite sandboxes the current working directory similar to SQLite. The JSONlite data directory by default is named `jsonlite.data` and each json document is validated and saved pretty printed as a uuid.

## Requirements

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

Expand Down Expand Up @@ -124,7 +124,7 @@ Usage: jsonlite command <command-specific-options>
````
➜ jsonlite version
1.1.1
1.1.2
````

### default
Expand Down Expand Up @@ -175,7 +175,7 @@ For more information on semantic versioning, visit http://semver.org/.

## License & Legal

Copyright 2017 Justin Keller
Copyright 2021 Justin Keller

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions jsonlite.bash
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env bash

###############################################################################
# Copyright 2017 Justin Keller
# Copyright 2021 Justin Keller
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -18,7 +18,7 @@

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

readonly VERSION="1.1.1"
readonly VERSION="1.1.2"
export JSONLITE_DATA_DIR=${JSONLITE_DATA_DIR:="$PWD/jsonlite.data"}

jsonlite_version() {
Expand Down

0 comments on commit f781aa6

Please sign in to comment.