Skip to content

Commit f249e7e

Browse files
committed
patch release
1 parent 44fddaa commit f249e7e

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.14)
33
project(
44
simdjson
55
# The version number is modified by tools/release.py
6-
VERSION 4.0.0
6+
VERSION 4.0.1
77
DESCRIPTION "Parsing gigabytes of JSON per second"
88
HOMEPAGE_URL "https://simdjson.org/"
99
LANGUAGES CXX C

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.0.0"
41+
PROJECT_NUMBER = "4.0.1"
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: 2 additions & 2 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.0.0"
7+
#define SIMDJSON_VERSION "4.0.1"
88

99
namespace simdjson {
1010
enum {
@@ -19,7 +19,7 @@ enum {
1919
/**
2020
* The revision (major.minor.REVISION) of simdjson being used.
2121
*/
22-
SIMDJSON_VERSION_REVISION = 0
22+
SIMDJSON_VERSION_REVISION = 1
2323
};
2424
} // namespace simdjson
2525

singleheader/simdjson.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* auto-generated on 2025-09-09 18:44:21 -0400. version 4.0.0 Do not edit! */
1+
/* auto-generated on 2025-09-12 19:26:22 -0400. version 4.0.1 Do not edit! */
22
/* including simdjson.cpp: */
33
/* begin file simdjson.cpp */
44
#define SIMDJSON_SRC_SIMDJSON_CPP

singleheader/simdjson.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* auto-generated on 2025-09-09 18:44:21 -0400. version 4.0.0 Do not edit! */
1+
/* auto-generated on 2025-09-12 19:26:22 -0400. version 4.0.1 Do not edit! */
22
/* including simdjson.h: */
33
/* begin file simdjson.h */
44
#ifndef SIMDJSON_H
@@ -2508,7 +2508,7 @@ namespace std {
25082508
#define SIMDJSON_SIMDJSON_VERSION_H
25092509

25102510
/** The version of simdjson being used (major.minor.revision) */
2511-
#define SIMDJSON_VERSION "4.0.0"
2511+
#define SIMDJSON_VERSION "4.0.1"
25122512

25132513
namespace simdjson {
25142514
enum {
@@ -2523,7 +2523,7 @@ enum {
25232523
/**
25242524
* The revision (major.minor.REVISION) of simdjson being used.
25252525
*/
2526-
SIMDJSON_VERSION_REVISION = 0
2526+
SIMDJSON_VERSION_REVISION = 1
25272527
};
25282528
} // namespace simdjson
25292529

singleheader/singleheader.zip

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)