Skip to content

Commit f781aa6

Browse files
committed
1.1.2 release. see CHANGELOG.md
1 parent 6928d34 commit f781aa6

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

CHANGELOG.md

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

4+
## 1.1.2 - *1/26/2021*
5+
6+
- Documentation cleanup.
7+
- Bump copyrights to 2021.
8+
49
## 1.1.1 - *9/23/2017*
510

611
- Changed text from `set is using` to `json formatter` in `jsonlite_info()`.

LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2017 Justin Keller
189+
Copyright 2021 Justin Keller
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

5-
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.
5+
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.
66

77
## Requirements
88

@@ -50,7 +50,7 @@ echo '{"key":"value"}' | jsonlite set
5050
4472B861-4C10-4C0A-A63B-E5D45AA679C0
5151
````
5252
````
53-
cat foobar.json | jsonlite set
53+
cat file.json | jsonlite set
5454
9DF4DC1F-121E-46DC-B580-E1663B645AED
5555
````
5656

@@ -124,7 +124,7 @@ Usage: jsonlite command <command-specific-options>
124124
125125
````
126126
➜ jsonlite version
127-
1.1.1
127+
1.1.2
128128
````
129129

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

176176
## License & Legal
177177

178-
Copyright 2017 Justin Keller
178+
Copyright 2021 Justin Keller
179179

180180
Licensed under the Apache License, Version 2.0 (the "License");
181181
you may not use this file except in compliance with the License.

jsonlite.bash

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22

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

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

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

2424
jsonlite_version() {

0 commit comments

Comments
 (0)