File tree 6 files changed +2170
-2032
lines changed
6 files changed +2170
-2032
lines changed Original file line number Diff line number Diff line change @@ -6,11 +6,11 @@ project(simdjson
6
6
)
7
7
8
8
set (PROJECT_VERSION_MAJOR 0)
9
- set (PROJECT_VERSION_MINOR 6 )
9
+ set (PROJECT_VERSION_MINOR 7 )
10
10
set (PROJECT_VERSION_PATCH 0)
11
- set (SIMDJSON_SEMANTIC_VERSION "0.6 .0" CACHE STRING "simdjson semantic version" )
12
- set (SIMDJSON_LIB_VERSION "4 .0.0" CACHE STRING "simdjson library version" )
13
- set (SIMDJSON_LIB_SOVERSION "4 " CACHE STRING "simdjson library soversion" )
11
+ set (SIMDJSON_SEMANTIC_VERSION "0.7 .0" CACHE STRING "simdjson semantic version" )
12
+ set (SIMDJSON_LIB_VERSION "5 .0.0" CACHE STRING "simdjson library version" )
13
+ set (SIMDJSON_LIB_SOVERSION "5 " CACHE STRING "simdjson library soversion" )
14
14
set (SIMDJSON_GITHUB_REPOSITORY https://github.com/simdjson/simdjson)
15
15
16
16
include (GNUInstallDirs)
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ PROJECT_NAME = simdjson
38
38
# could be handy for archiving the generated documentation or if some version
39
39
# control system is used.
40
40
41
- PROJECT_NUMBER = "0.6 .0"
41
+ PROJECT_NUMBER = "0.7 .0"
42
42
43
43
# Using the PROJECT_BRIEF tag one can provide an optional one line description
44
44
# for a project that appears at the top of each page and should give viewer a
Original file line number Diff line number Diff line change 3
3
[ ![ Ubuntu 20.04 CI] ( https://github.com/simdjson/simdjson/workflows/Ubuntu%2020.04%20CI%20(GCC%209)/badge.svg )] ( https://simdjson.org/plots.html )
4
4
![ VS16-CI] ( https://github.com/simdjson/simdjson/workflows/VS16-CI/badge.svg )
5
5
![ MinGW64-CI] ( https://github.com/simdjson/simdjson/workflows/MinGW64-CI/badge.svg )
6
- [ ![ ] [ license img ]] [ license ] [ ![ Doxygen Documentation] ( https://img.shields.io/badge/docs-doxygen-green.svg )] ( https://simdjson.org/api/0.6 .0/index.html )
6
+ [ ![ ] [ license img ]] [ license ] [ ![ Doxygen Documentation] ( https://img.shields.io/badge/docs-doxygen-green.svg )] ( https://simdjson.org/api/0.7 .0/index.html )
7
7
8
8
simdjson : Parsing gigabytes of JSON per second
9
9
===============================================
@@ -73,7 +73,7 @@ Usage documentation is available:
73
73
* [Performance](doc/performance.md) shows some more advanced scenarios and how to tune for them.
74
74
* [Implementation Selection](doc/implementation-selection.md) describes runtime CPU detection and
75
75
how you can work with it.
76
- * [API](https://simdjson.org/api/0.6 .0/annotated.html) contains the automatically generated API documentation.
76
+ * [API](https://simdjson.org/api/0.7 .0/annotated.html) contains the automatically generated API documentation.
77
77
78
78
Performance results
79
79
-------------------
Original file line number Diff line number Diff line change 4
4
#define SIMDJSON_SIMDJSON_VERSION_H
5
5
6
6
/* * The version of simdjson being used (major.minor.revision) */
7
- #define SIMDJSON_VERSION 0.6 .0
7
+ #define SIMDJSON_VERSION 0.7 .0
8
8
9
9
namespace simdjson {
10
10
enum {
15
15
/* *
16
16
* The minor version (major.MINOR.revision) of simdjson being used.
17
17
*/
18
- SIMDJSON_VERSION_MINOR = 6 ,
18
+ SIMDJSON_VERSION_MINOR = 7 ,
19
19
/* *
20
20
* The revision (major.minor.REVISION) of simdjson being used.
21
21
*/
You can’t perform that action at this time.
0 commit comments