Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 88374a4

Browse files
authored
Preparing new patch release. (simdjson#1048)
1 parent 74870a8 commit 88374a4

File tree

7 files changed

+10
-12
lines changed

7 files changed

+10
-12
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 4)
10-
set(PROJECT_VERSION_PATCH 6)
11-
set(SIMDJSON_SEMANTIC_VERSION "0.4.6" CACHE STRING "simdjson semantic version")
10+
set(PROJECT_VERSION_PATCH 7)
11+
set(SIMDJSON_SEMANTIC_VERSION "0.4.7" CACHE STRING "simdjson semantic version")
1212
set(SIMDJSON_LIB_VERSION "2.0.0" CACHE STRING "simdjson library version")
1313
set(SIMDJSON_LIB_SOVERSION "2" 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.4.6"
41+
PROJECT_NUMBER = "0.4.7"
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.4.6
7+
#define SIMDJSON_VERSION 0.4.7
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 = 6
22+
SIMDJSON_VERSION_REVISION = 7
2323
};
2424
} // namespace simdjson
2525

singleheader/amalgamate_demo.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* auto-generated on Wed Jul 1 14:00:57 EDT 2020. Do not edit! */
1+
/* auto-generated on Fri Jul 17 14:52:28 EDT 2020. Do not edit! */
22

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

singleheader/simdjson.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* auto-generated on Wed Jul 1 14:00:57 EDT 2020. Do not edit! */
1+
/* auto-generated on Fri Jul 17 14:52:28 EDT 2020. Do not edit! */
22
/* begin file src/simdjson.cpp */
33
#include "simdjson.h"
44

@@ -520,7 +520,6 @@ class detect_best_supported_implementation_on_first_use final : public implement
520520

521521
const detect_best_supported_implementation_on_first_use detect_best_supported_implementation_on_first_use_singleton;
522522

523-
internal::atomic_ptr<const implementation> active_implementation{&internal::detect_best_supported_implementation_on_first_use_singleton};
524523

525524
const std::initializer_list<const implementation *> available_implementation_pointers {
526525
#if SIMDJSON_IMPLEMENTATION_HASWELL

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 Wed Jul 1 14:00:57 EDT 2020. Do not edit! */
1+
/* auto-generated on Fri Jul 17 14:52:28 EDT 2020. Do not edit! */
22
/* begin file include/simdjson.h */
33
#ifndef SIMDJSON_H
44
#define SIMDJSON_H
@@ -2040,7 +2040,7 @@ SIMDJSON_DISABLE_UNDESIRED_WARNINGS
20402040
#define SIMDJSON_SIMDJSON_VERSION_H
20412041
20422042
/** The version of simdjson being used (major.minor.revision) */
2043-
#define SIMDJSON_VERSION 0.4.6
2043+
#define SIMDJSON_VERSION 0.4.7
20442044
20452045
namespace simdjson {
20462046
enum {
@@ -2055,7 +2055,7 @@ enum {
20552055
/**
20562056
* The revision (major.minor.REVISION) of simdjson being used.
20572057
*/
2058-
SIMDJSON_VERSION_REVISION = 6
2058+
SIMDJSON_VERSION_REVISION = 7
20592059
};
20602060
} // namespace simdjson
20612061

src/implementation.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ class detect_best_supported_implementation_on_first_use final : public implement
5858

5959
const detect_best_supported_implementation_on_first_use detect_best_supported_implementation_on_first_use_singleton;
6060

61-
internal::atomic_ptr<const implementation> active_implementation{&internal::detect_best_supported_implementation_on_first_use_singleton};
6261

6362
const std::initializer_list<const implementation *> available_implementation_pointers {
6463
#if SIMDJSON_IMPLEMENTATION_HASWELL

0 commit comments

Comments
 (0)