Compare commits

...

8 Commits

Author SHA1 Message Date
Tristan Penman
48424184f3
Merge pull request #220 from AdamKorcz/runtests
build tests in oss-fuzz build
2025-07-28 12:09:41 +10:00
Adam Korczynski
565c96b67b build tests in oss-fuzz build
Signed-off-by: Adam Korczynski <adam@adalogics.com>
2025-07-23 12:42:07 +01:00
Tristan Penman
5dc4596bd7 Fix grammatical errors 2025-07-06 12:59:15 +10:00
Tristan Penman
4d2f389531
Merge pull request #216 from MindaugasPaznekas/patch-1
Fix copy-paste error message
2025-07-06 12:57:25 +10:00
Mindaugas Paznekas
0369c22b5f
Fix copy-paste error message 2025-07-03 14:20:28 +03:00
Tristan Penman
2554d638ae
Merge pull request #215 from pri-patel/patelp/add-regex-to-bundle-script
Update bundle.sh to include regex.hpp
2025-06-15 14:28:37 +10:00
Pritesh Patel
1fab149d57 Update bundle.sh to include regex.hpp 2025-06-13 10:30:04 +01:00
Tristan Penman
6674bc91c7 Bump minimum CMake version for inspector 2025-06-10 17:40:26 +10:00
4 changed files with 5 additions and 4 deletions

View File

@ -74,6 +74,7 @@ common_headers=(
include/valijson/internal/frozen_value.hpp
include/valijson/internal/json_pointer.hpp
include/valijson/internal/json_reference.hpp
include/valijson/internal/regex.hpp
include/valijson/internal/uri.hpp
include/valijson/utils/file_utils.hpp
include/valijson/utils/utf8_utils.hpp

View File

@ -690,7 +690,7 @@ private:
makeMultipleOfDoubleConstraint(itr->second),
&subschema);
} else {
throwRuntimeError("Expected an numeric value for "
throwRuntimeError("Expected a numeric value for "
" 'divisibleBy' constraint.");
}
} else {
@ -853,7 +853,7 @@ private:
makeMultipleOfDoubleConstraint(itr->second),
&subschema);
} else {
throwRuntimeError("Expected an numeric value for 'divisibleBy' constraint.");
throwRuntimeError("Expected a numeric value for 'multipleOf' constraint.");
}
}

View File

@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.0)
cmake_minimum_required(VERSION 3.10.0)
# Add folder where are supportive functions
set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)

View File

@ -5,7 +5,7 @@ git submodule update --init --depth 1 thirdparty
mkdir build
cd build
cmake \
-Dvalijson_BUILD_TESTS=FALSE \
-Dvalijson_BUILD_TESTS=TRUE \
-Dvalijson_BUILD_EXAMPLES=FALSE \
-Dvalijson_EXCLUDE_BOOST=TRUE \
..