diff --git a/CHANGELOG b/CHANGELOG index 40c7e710..a7d7cf56 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -9,6 +9,7 @@ xxxxxxxx v1.20.5 `Binary Object Store Descriptor` sections - Change `LANG=C` to `LC_ALL=C` in locale instructions - Add `__main__.py` to package allowing `python -m jc` usage +- Add an enclosing top-level folder inside the windows.zip package 20220723 v1.20.4 - Fix URL string parser path list for URLs ending in a forward slash diff --git a/docs/parsers/timestamp.md b/docs/parsers/timestamp.md index a5d07abd..444a1cea 100644 --- a/docs/parsers/timestamp.md +++ b/docs/parsers/timestamp.md @@ -12,7 +12,7 @@ The utc fields are timezone-aware, based on the UTC timezone. Usage (cli): - $ echo "2022-07-20T14:52:45Z" | jc --timestamp + $ echo 1658599410 | jc --timestamp Usage (module): @@ -59,7 +59,7 @@ Schema: Examples: - $ echo '1658599410' | jc --timestamp -p + $ echo 1658599410 | jc --timestamp -p { "naive": { "year": 2022, diff --git a/jc/parsers/timestamp.py b/jc/parsers/timestamp.py index 55891dd2..faf1226f 100644 --- a/jc/parsers/timestamp.py +++ b/jc/parsers/timestamp.py @@ -7,7 +7,7 @@ The utc fields are timezone-aware, based on the UTC timezone. Usage (cli): - $ echo "2022-07-20T14:52:45Z" | jc --timestamp + $ echo 1658599410 | jc --timestamp Usage (module): @@ -54,7 +54,7 @@ Schema: Examples: - $ echo '1658599410' | jc --timestamp -p + $ echo 1658599410 | jc --timestamp -p { "naive": { "year": 2022, diff --git a/man/jc.1 b/man/jc.1 index aa71bcde..b237c3d8 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -1,4 +1,4 @@ -.TH jc 1 2022-08-04 1.20.5 "JSON Convert" +.TH jc 1 2022-08-06 1.20.5 "JSON Convert" .SH NAME \fBjc\fP \- JSON Convert JSONifies the output of many CLI tools and file-types .SH SYNOPSIS