Skip to content

Commit 18d612d

Browse files
committed
4.5.0
1 parent bddb231 commit 18d612d

6 files changed

Lines changed: 382 additions & 25 deletions

File tree

CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ endif()
1212
project(
1313
simdjson
1414
# The version number is modified by tools/release.py
15-
VERSION 4.4.2
15+
VERSION 4.5.0
1616
DESCRIPTION "Parsing gigabytes of JSON per second"
1717
HOMEPAGE_URL "https://simdjson.org/"
1818
LANGUAGES CXX C
@@ -29,8 +29,8 @@ string(
2929
# ---- Options, variables ----
3030

3131
# These version numbers are modified by tools/release.py
32-
set(SIMDJSON_LIB_VERSION "31.0.0" CACHE STRING "simdjson library version")
33-
set(SIMDJSON_LIB_SOVERSION "31" CACHE STRING "simdjson library soversion")
32+
set(SIMDJSON_LIB_VERSION "32.0.0" CACHE STRING "simdjson library version")
33+
set(SIMDJSON_LIB_SOVERSION "32" CACHE STRING "simdjson library soversion")
3434

3535
option(SIMDJSON_BUILD_STATIC_LIB "Build simdjson_static library along with simdjson (only makes sense if BUILD_SHARED_LIBS=ON)" OFF)
3636
if(SIMDJSON_BUILD_STATIC_LIB AND NOT BUILD_SHARED_LIBS)
@@ -114,7 +114,7 @@ if(CMAKE_VERSION VERSION_GREATER_EQUAL "3.16")
114114
<utility>
115115
<vector>
116116
)
117-
117+
118118
if(SIMDJSON_HAS_BIT_HEADER)
119119
list(APPEND SIMDJSON_PRECOMPILE_HEADERS <bit>)
120120
endif()

Doxyfile

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

41-
PROJECT_NUMBER = "4.4.2"
41+
PROJECT_NUMBER = "4.5.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

include/simdjson/simdjson_version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#define SIMDJSON_SIMDJSON_VERSION_H
55

66
/** The version of simdjson being used (major.minor.revision) */
7-
#define SIMDJSON_VERSION "4.4.2"
7+
#define SIMDJSON_VERSION "4.5.0"
88

99
namespace simdjson {
1010
enum {
@@ -15,11 +15,11 @@ enum {
1515
/**
1616
* The minor version (major.MINOR.revision) of simdjson being used.
1717
*/
18-
SIMDJSON_VERSION_MINOR = 4,
18+
SIMDJSON_VERSION_MINOR = 5,
1919
/**
2020
* The revision (major.minor.REVISION) of simdjson being used.
2121
*/
22-
SIMDJSON_VERSION_REVISION = 2
22+
SIMDJSON_VERSION_REVISION = 0
2323
};
2424
} // namespace simdjson
2525

0 commit comments

Comments
 (0)