Skip to content

Commit a0cd612

Browse files
SkptakSoren Ptak
and
Soren Ptak
authored
Version Number Fix (#125)
* Bumping to version 3.2 instead of patch 3.1.1 * Fixing pattern match type in README Co-authored-by: Soren Ptak <[email protected]>
1 parent 16637e3 commit a0cd612

30 files changed

+33
-33
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log for coreJSON Library
22

3-
## v3.1.1 (August 2022)
3+
## v3.2.0 (September 2022)
44
- [#121](https://github.com/FreeRTOS/coreJSON/pull/121) MISRA C:2012 compliance updates.
55
- [#119](https://github.com/FreeRTOS/coreJSON/pull/119) Update CBMC Starter Kit.
66
- [#115](https://github.com/FreeRTOS/coreJSON/pull/115) Fix JSON validation for mismatched brackets.

docs/doxygen/config.doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = coreJSON
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = v3.1.1
41+
PROJECT_NUMBER = v3.2.0
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

manifest.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name : "coreJSON"
2-
version: "v3.1.1"
2+
version: "v3.2.0"
33
description: |
44
"A parser strictly enforcing the ECMA-404 JSON standard, suitable for microcontrollers. \n"
55
license: "MIT"

source/core_json.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreJSON v3.1.1
2+
* coreJSON v3.2.0
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

source/include/core_json.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreJSON v3.1.1
2+
* coreJSON v3.2.0
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

test/cbmc/include/core_json_annex.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreJSON v3.1.1
2+
* coreJSON v3.2.0
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

test/cbmc/include/skipGeneric.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreJSON v3.1.1
2+
* coreJSON v3.2.0
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

test/cbmc/proofs/JSON_Iterate/JSON_Iterate_harness.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreJSON v3.1.1
2+
* coreJSON v3.2.0
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

test/cbmc/proofs/JSON_Search/JSON_Search_harness.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreJSON v3.1.1
2+
* coreJSON v3.2.0
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

test/cbmc/proofs/JSON_Validate/JSON_Validate_harness.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreJSON v3.1.1
2+
* coreJSON v3.2.0
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

test/cbmc/proofs/skipAnyLiteral/skipAnyLiteral_harness.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreJSON v3.1.1
2+
* coreJSON v3.2.0
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

test/cbmc/proofs/skipCollection/skipCollection_harness.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreJSON v3.1.1
2+
* coreJSON v3.2.0
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

test/cbmc/proofs/skipEscape/skipEscape_harness.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreJSON v3.1.1
2+
* coreJSON v3.2.0
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

test/cbmc/proofs/skipNumber/skipNumber_harness.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreJSON v3.1.1
2+
* coreJSON v3.2.0
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

test/cbmc/proofs/skipSpace/skipSpace_harness.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreJSON v3.1.1
2+
* coreJSON v3.2.0
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

test/cbmc/proofs/skipSpaceAndComma/skipSpaceAndComma_harness.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreJSON v3.1.1
2+
* coreJSON v3.2.0
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

test/cbmc/proofs/skipString/skipString_harness.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreJSON v3.1.1
2+
* coreJSON v3.2.0
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

test/cbmc/proofs/skipUTF8/skipUTF8_harness.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreJSON v3.1.1
2+
* coreJSON v3.2.0
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

test/cbmc/stubs/skipAnyLiteral.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreJSON v3.1.1
2+
* coreJSON v3.2.0
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

test/cbmc/stubs/skipAnyScalar.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreJSON v3.1.1
2+
* coreJSON v3.2.0
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

test/cbmc/stubs/skipCollection.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreJSON v3.1.1
2+
* coreJSON v3.2.0
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

test/cbmc/stubs/skipEscape.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreJSON v3.1.1
2+
* coreJSON v3.2.0
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

test/cbmc/stubs/skipGeneric.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreJSON v3.1.1
2+
* coreJSON v3.2.0
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

test/cbmc/stubs/skipNumber.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreJSON v3.1.1
2+
* coreJSON v3.2.0
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

test/cbmc/stubs/skipSpace.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreJSON v3.1.1
2+
* coreJSON v3.2.0
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

test/cbmc/stubs/skipSpaceAndComma.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreJSON v3.1.1
2+
* coreJSON v3.2.0
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

test/cbmc/stubs/skipString.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreJSON v3.1.1
2+
* coreJSON v3.2.0
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

test/cbmc/stubs/skipUTF8.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreJSON v3.1.1
2+
* coreJSON v3.2.0
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

test/unit-test/core_json_utest.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* coreJSON v3.1.1
2+
* coreJSON v3.2.0
33
* Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
44
*
55
* Permission is hereby granted, free of charge, to any person obtaining a copy of

tools/coverity/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ Go to the root directory of the library and run the following commands in termin
4848
~~~
4949
6. Format the errors in HTML format so that it is more readable while removing the test and build directory from the report
5050
~~~
51-
cov-format-errors --dir . --file "*/source" --exclude-files '(/build/|/test/)' --html-output html-out;
51+
cov-format-errors --dir . --file "source" --exclude-files '(/build/|/test/)' --html-output html-out;
5252
~~~
5353
7. Format the errors in JSON format to perform a jq query to get a simplified list of any exceptions.
5454
NOTE: A blank output means there are no defects that aren't being suppressed by the config or inline comments.
5555
~~~
56-
cov-format-errors --dir . --file "*/source" --exclude-files '(/build/|/test/)' --json-output-v2 defects.json;
56+
cov-format-errors --dir . --file "source" --exclude-files '(/build/|/test/)' --json-output-v2 defects.json;
5757
echo -e "\n-------------------------Non-Suppresed Deviations, if any, Listed Below-------------------------\n";
5858
jq '.issues[] | .events[] | .eventTag ' defects.json | sort | uniq -c | sort -nr;
5959
echo -e "\n-------------------------Non-Suppresed Deviations, if any, Listed Above-------------------------\n";
@@ -67,8 +67,8 @@ For your convenience the commands above are below to be copy/pasted into a UNIX
6767
cov-build --emit-complementary-info --dir cov-out make coverity_analysis;
6868
cd cov-out/
6969
cov-analyze --dir . --coding-standard-config ../../tools/coverity/misra.config;
70-
cov-format-errors --dir . --file "*/source" --exclude-files '(/build/|/test/)' --html-output html-out;
71-
cov-format-errors --dir . --file "*/source" --exclude-files '(/build/|/test/)' --json-output-v2 defects.json;
70+
cov-format-errors --dir . --file "source" --exclude-files '(/build/|/test/)' --html-output html-out;
71+
cov-format-errors --dir . --file "source" --exclude-files '(/build/|/test/)' --json-output-v2 defects.json;
7272
echo -e "\n-------------------------Non-Suppresed Deviations, if any, Listed Below-------------------------\n";
7373
jq '.issues[] | .events[] | .eventTag ' defects.json | sort | uniq -c | sort -nr;
7474
echo -e "\n-------------------------Non-Suppresed Deviations, if any, Listed Above-------------------------\n";

0 commit comments

Comments
 (0)