Skip to content

Commit cbacec0

Browse files
committed
Releasing 0.7.0.
1 parent 82fcf14 commit cbacec0

File tree

6 files changed

+2170
-2032
lines changed

6 files changed

+2170
-2032
lines changed

CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ project(simdjson
66
)
77

88
set(PROJECT_VERSION_MAJOR 0)
9-
set(PROJECT_VERSION_MINOR 6)
9+
set(PROJECT_VERSION_MINOR 7)
1010
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")
1414
set(SIMDJSON_GITHUB_REPOSITORY https://github.com/simdjson/simdjson)
1515

1616
include(GNUInstallDirs)

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.6.0"
41+
PROJECT_NUMBER = "0.7.0"
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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Ubuntu 20.04 CI](https://github.com/simdjson/simdjson/workflows/Ubuntu%2020.04%20CI%20(GCC%209)/badge.svg)](https://simdjson.org/plots.html)
44
![VS16-CI](https://github.com/simdjson/simdjson/workflows/VS16-CI/badge.svg)
55
![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)
77

88
simdjson : Parsing gigabytes of JSON per second
99
===============================================
@@ -73,7 +73,7 @@ Usage documentation is available:
7373
* [Performance](doc/performance.md) shows some more advanced scenarios and how to tune for them.
7474
* [Implementation Selection](doc/implementation-selection.md) describes runtime CPU detection and
7575
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.
7777
7878
Performance results
7979
-------------------

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.6.0
7+
#define SIMDJSON_VERSION 0.7.0
88

99
namespace simdjson {
1010
enum {
@@ -15,7 +15,7 @@ enum {
1515
/**
1616
* The minor version (major.MINOR.revision) of simdjson being used.
1717
*/
18-
SIMDJSON_VERSION_MINOR = 6,
18+
SIMDJSON_VERSION_MINOR = 7,
1919
/**
2020
* The revision (major.minor.REVISION) of simdjson being used.
2121
*/

0 commit comments

Comments
 (0)