Skip to content

Commit 3cb79e6

Browse files
authored
Trying again. (simdjson#671)
1 parent c5e21a2 commit 3cb79e6

File tree

5 files changed

+147
-68
lines changed

5 files changed

+147
-68
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ set(THREADS_PREFER_PTHREAD_FLAG ON)
2727
set(SIMDJSON_LIB_NAME simdjson)
2828
set(PROJECT_VERSION_MAJOR 0)
2929
set(PROJECT_VERSION_MINOR 3)
30-
set(PROJECT_VERSION_PATCH 0)
31-
set(SIMDJSON_LIB_VERSION "0.3.0" CACHE STRING "simdjson library version")
30+
set(PROJECT_VERSION_PATCH 1)
31+
set(SIMDJSON_LIB_VERSION "0.3.1" CACHE STRING "simdjson library version")
3232
set(SIMDJSON_LIB_SOVERSION "1" CACHE STRING "simdjson library soversion")
3333

3434
option(SIMDJSON_IMPLEMENTATION_HASWELL "Include the haswell implementation" ON)

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.3.0
7+
#define SIMDJSON_VERSION 0.3.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/amalgamation_demo.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* auto-generated on Tue 31 Mar 2020 17:00:28 EDT. Do not edit! */
1+
/* auto-generated on Thu 2 Apr 2020 18:58:25 EDT. Do not edit! */
22

33
#include <iostream>
44
#include "simdjson.h"

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 Tue 31 Mar 2020 17:00:28 EDT. Do not edit! */
1+
/* auto-generated on Thu 2 Apr 2020 18:58:25 EDT. Do not edit! */
22
#include "simdjson.h"
33

44
/* used for http://dmalloc.com/ Dmalloc - Debug Malloc Library */

0 commit comments

Comments
 (0)