Skip to content

Commit 17b03de

Browse files
committed
Patch release 0.7.1
1 parent 15297c1 commit 17b03de

File tree

5 files changed

+19
-9
lines changed

5 files changed

+19
-9
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ project(simdjson
77

88
set(PROJECT_VERSION_MAJOR 0)
99
set(PROJECT_VERSION_MINOR 7)
10-
set(PROJECT_VERSION_PATCH 0)
11-
set(SIMDJSON_SEMANTIC_VERSION "0.7.0" CACHE STRING "simdjson semantic version")
10+
set(PROJECT_VERSION_PATCH 1)
11+
set(SIMDJSON_SEMANTIC_VERSION "0.7.1" CACHE STRING "simdjson semantic version")
1212
set(SIMDJSON_LIB_VERSION "5.0.0" CACHE STRING "simdjson library version")
1313
set(SIMDJSON_LIB_SOVERSION "5" CACHE STRING "simdjson library soversion")
1414
set(SIMDJSON_GITHUB_REPOSITORY https://github.com/simdjson/simdjson)

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 = "0.7.0"
41+
PROJECT_NUMBER = "0.7.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 0.7.0
7+
#define SIMDJSON_VERSION 0.7.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 2020-12-03 13:16:45 -0500. Do not edit! */
1+
/* auto-generated on 2020-12-13 20:01:10 -0500. Do not edit! */
22
/* begin file src/simdjson.cpp */
33
#include "simdjson.h"
44

singleheader/simdjson.h

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* auto-generated on 2020-12-03 13:16:45 -0500. Do not edit! */
1+
/* auto-generated on 2020-12-13 20:01:10 -0500. Do not edit! */
22
/* begin file include/simdjson.h */
33
#ifndef SIMDJSON_H
44
#define SIMDJSON_H
@@ -2015,7 +2015,7 @@ SIMDJSON_DISABLE_UNDESIRED_WARNINGS
20152015
#define SIMDJSON_SIMDJSON_VERSION_H
20162016

20172017
/** The version of simdjson being used (major.minor.revision) */
2018-
#define SIMDJSON_VERSION 0.7.0
2018+
#define SIMDJSON_VERSION 0.7.1
20192019

20202020
namespace simdjson {
20212021
enum {
@@ -2030,7 +2030,7 @@ enum {
20302030
/**
20312031
* The revision (major.minor.REVISION) of simdjson being used.
20322032
*/
2033-
SIMDJSON_VERSION_REVISION = 0
2033+
SIMDJSON_VERSION_REVISION = 1
20342034
};
20352035
} // namespace simdjson
20362036

@@ -8789,6 +8789,11 @@ extern SIMDJSON_DLLIMPORTEXPORT const uint64_t thintable_epi8[256];
87898789
#endif
87908790

87918791

8792+
#ifndef SIMDJSON_IMPLEMENTATION_ARM64
8793+
#define SIMDJSON_IMPLEMENTATION_ARM64 (SIMDJSON_IS_ARM64)
8794+
#endif
8795+
#define SIMDJSON_CAN_ALWAYS_RUN_ARM64 SIMDJSON_IMPLEMENTATION_ARM64 && SIMDJSON_IS_ARM64
8796+
87928797

87938798
#if SIMDJSON_IMPLEMENTATION_ARM64
87948799

@@ -26311,6 +26316,11 @@ SIMDJSON_UNTARGET_REGION
2631126316
#endif
2631226317

2631326318

26319+
#ifndef SIMDJSON_IMPLEMENTATION_PPC64
26320+
#define SIMDJSON_IMPLEMENTATION_PPC64 (SIMDJSON_IS_PPC64)
26321+
#endif
26322+
#define SIMDJSON_CAN_ALWAYS_RUN_PPC64 SIMDJSON_IMPLEMENTATION_PPC64 && SIMDJSON_IS_PPC64
26323+
2631426324

2631526325
#if SIMDJSON_IMPLEMENTATION_PPC64
2631626326

0 commit comments

Comments
 (0)