diff --git a/CMakeLists.txt b/CMakeLists.txt index d3a9ddf44..d0b49cac4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,8 +9,8 @@ project(simdjson set(PROJECT_VERSION_MAJOR 0) set(PROJECT_VERSION_MINOR 9) -set(PROJECT_VERSION_PATCH 6) -set(SIMDJSON_SEMANTIC_VERSION "0.9.6" CACHE STRING "simdjson semantic version") +set(PROJECT_VERSION_PATCH 7) +set(SIMDJSON_SEMANTIC_VERSION "0.9.7" CACHE STRING "simdjson semantic version") set(SIMDJSON_LIB_VERSION "8.0.0" CACHE STRING "simdjson library version") set(SIMDJSON_LIB_SOVERSION "8" CACHE STRING "simdjson library soversion") set(SIMDJSON_GITHUB_REPOSITORY https://github.com/simdjson/simdjson) diff --git a/Doxyfile b/Doxyfile index 929204f49..3b24a1704 100644 --- a/Doxyfile +++ b/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = simdjson # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = "0.9.6" +PROJECT_NUMBER = "0.9.7" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/include/simdjson/error.h b/include/simdjson/error.h index 1105a26b4..e1005d342 100644 --- a/include/simdjson/error.h +++ b/include/simdjson/error.h @@ -286,7 +286,7 @@ struct simdjson_result : public internal::simdjson_result_base { #if SIMDJSON_EXCEPTIONS template -inline std::ostream& operator<<(std::ostream& out, simdjson_result value) noexcept { return out << value.value(); } +inline std::ostream& operator<<(std::ostream& out, simdjson_result value) { return out << value.value(); } #endif // SIMDJSON_EXCEPTIONS diff --git a/include/simdjson/simdjson_version.h b/include/simdjson/simdjson_version.h index 32257d0db..102cc2815 100644 --- a/include/simdjson/simdjson_version.h +++ b/include/simdjson/simdjson_version.h @@ -4,7 +4,7 @@ #define SIMDJSON_SIMDJSON_VERSION_H /** The version of simdjson being used (major.minor.revision) */ -#define SIMDJSON_VERSION 0.9.6 +#define SIMDJSON_VERSION 0.9.7 namespace simdjson { enum { @@ -19,7 +19,7 @@ enum { /** * The revision (major.minor.REVISION) of simdjson being used. */ - SIMDJSON_VERSION_REVISION = 6 + SIMDJSON_VERSION_REVISION = 7 }; } // namespace simdjson diff --git a/singleheader/simdjson.cpp b/singleheader/simdjson.cpp index a828033c2..1cad4ac90 100644 --- a/singleheader/simdjson.cpp +++ b/singleheader/simdjson.cpp @@ -1,4 +1,4 @@ -/* auto-generated on 2021-06-04 17:09:21 -0400. Do not edit! */ +/* auto-generated on 2021-06-05 11:33:32 -0400. Do not edit! */ /* begin file src/simdjson.cpp */ #include "simdjson.h" diff --git a/singleheader/simdjson.h b/singleheader/simdjson.h index 7002e3598..6857799ba 100644 --- a/singleheader/simdjson.h +++ b/singleheader/simdjson.h @@ -1,4 +1,4 @@ -/* auto-generated on 2021-06-04 17:09:21 -0400. Do not edit! */ +/* auto-generated on 2021-06-05 11:33:32 -0400. Do not edit! */ /* begin file include/simdjson.h */ #ifndef SIMDJSON_H #define SIMDJSON_H @@ -2078,7 +2078,7 @@ SIMDJSON_DISABLE_UNDESIRED_WARNINGS #define SIMDJSON_SIMDJSON_VERSION_H /** The version of simdjson being used (major.minor.revision) */ -#define SIMDJSON_VERSION 0.9.6 +#define SIMDJSON_VERSION 0.9.7 namespace simdjson { enum { @@ -2093,7 +2093,7 @@ enum { /** * The revision (major.minor.REVISION) of simdjson being used. */ - SIMDJSON_VERSION_REVISION = 6 + SIMDJSON_VERSION_REVISION = 7 }; } // namespace simdjson @@ -2387,7 +2387,7 @@ struct simdjson_result : public internal::simdjson_result_base { #if SIMDJSON_EXCEPTIONS template -inline std::ostream& operator<<(std::ostream& out, simdjson_result value) noexcept { return out << value.value(); } +inline std::ostream& operator<<(std::ostream& out, simdjson_result value) { return out << value.value(); } #endif // SIMDJSON_EXCEPTIONS