From f781aa67cec9b27bb8aba996f600cc66b3615bf9 Mon Sep 17 00:00:00 2001 From: Justin Date: Tue, 26 Jan 2021 21:00:09 -0600 Subject: [PATCH] 1.1.2 release. see CHANGELOG.md --- CHANGELOG.md | 5 +++++ LICENSE.txt | 2 +- README.md | 8 ++++---- jsonlite.bash | 4 ++-- 4 files changed, 12 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f7c6b81..e6ee39b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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()`. diff --git a/LICENSE.txt b/LICENSE.txt index f095d3f..bd02e59 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -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. diff --git a/README.md b/README.md index d915ff4..c95acf0 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 ```` @@ -124,7 +124,7 @@ Usage: jsonlite command ```` ➜ jsonlite version -1.1.1 +1.1.2 ```` ### default @@ -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. diff --git a/jsonlite.bash b/jsonlite.bash index 76b7d13..99e4987 100755 --- a/jsonlite.bash +++ b/jsonlite.bash @@ -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. @@ -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() {