Skip to content

Commit 68699eb

Browse files
committed
release 4.0.0
1 parent 06453f1 commit 68699eb

5 files changed

Lines changed: 1363 additions & 687 deletions

File tree

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ string(
2020
# ---- Options, variables ----
2121

2222
# These version numbers are modified by tools/release.py
23-
set(SIMDJSON_LIB_VERSION "28.0.0" CACHE STRING "simdjson library version")
24-
set(SIMDJSON_LIB_SOVERSION "28" CACHE STRING "simdjson library soversion")
23+
set(SIMDJSON_LIB_VERSION "27.0.0" CACHE STRING "simdjson library version")
24+
set(SIMDJSON_LIB_SOVERSION "27" CACHE STRING "simdjson library soversion")
2525

2626
option(SIMDJSON_BUILD_STATIC_LIB "Build simdjson_static library along with simdjson (only makes sense if BUILD_SHARED_LIBS=ON)" OFF)
2727
if(SIMDJSON_BUILD_STATIC_LIB AND NOT BUILD_SHARED_LIBS)

fuzz/fuzz_minify.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
1818
auto error = parser.parse(str).get(elem);
1919
if (error) { return 0; }
2020

21-
std::string minified=simdjson::minify(elem);
21+
std::string minified = simdjson::minify(elem);
2222
(void)minified;
2323
return 0;
2424
}

0 commit comments

Comments
 (0)