Skip to content

Commit

Permalink
update from jparse repos
Browse files Browse the repository at this point in the history
Updated from repos via:

```sh
make all.recreate_clone && make all.update_from_clone
```

Performed `make release` to test the above under macOS.
  • Loading branch information
lcn2 committed Nov 16, 2024
1 parent 42a9b98 commit 85f214d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions jparse/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Significant changes in the JSON parser repo

## Release 2.1.1 2024-11-16

Use `date` rather than `/bin/date` in `jparse_bug_report.sh`.


## Release 2.1.0 2024-11-15

Release version `"2.1.0 2024-11-15"` as a significant change to the jparse
Expand Down
4 changes: 2 additions & 2 deletions jparse/jparse_bug_report.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ if [[ -z "$MAKE" ]]; then
fi
export MAKE
export MAKE_FLAGS="V=@ S=@ Q= E=@ I= Q_V_OPTION=1 INSTALL_V='-v' MAKE_CD_Q="
export BUG_REPORT_VERSION="2.0.0 2024-11-05"
export BUG_REPORT_VERSION="2.0.1 2024-11-16"
export FAILURE_SUMMARY=
export NOTICE_SUMMARY=
export DBG_LEVEL="0"
Expand Down Expand Up @@ -119,7 +119,7 @@ jparse_bug_report.sh version: $BUG_REPORT_VERSION"
# NOTE: log file does not have an underscore in the name because we want to
# distinguish it from this script which does have an underscore in it.
#
LOGFILE="bug-report.$(/bin/date +%Y%m%d.%H%M%S).txt"
LOGFILE="bug-report.$(date +%Y%m%d.%H%M%S).txt"

# parse args
#
Expand Down
2 changes: 1 addition & 1 deletion jparse/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
*
* NOTE: this should match the latest Release string in CHANGES.md
*/
#define JPARSE_REPO_VERSION "2.1.0 2024-11-15" /* format: major.minor YYYY-MM-DD */
#define JPARSE_REPO_VERSION "2.1.1 2024-11-16" /* format: major.minor YYYY-MM-DD */

/*
* official jparse version
Expand Down

0 comments on commit 85f214d

Please sign in to comment.