Skip to content

Commit 4582a13

Browse files
committed
Final steps.
1 parent 444ec4a commit 4582a13

11 files changed

+639
-64
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 0)
11-
set(SIMDJSON_LIB_VERSION "0.4.0" CACHE STRING "simdjson library version")
10+
set(PROJECT_VERSION_PATCH 1)
11+
set(SIMDJSON_LIB_VERSION "0.4.1" CACHE STRING "simdjson library version")
1212
set(SIMDJSON_LIB_SOVERSION "2" CACHE STRING "simdjson library soversion")
1313
set(SIMDJSON_GITHUB_REPOSITORY https://github.com/simdjson/simdjson)
1414

Doxyfile

Lines changed: 2 additions & 2 deletions
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.0"
41+
PROJECT_NUMBER = "0.4.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
@@ -1026,7 +1026,7 @@ FILTER_SOURCE_PATTERNS =
10261026
# (index.html). This can be useful if you have a project on for instance GitHub
10271027
# and want to reuse the introduction page also for the doxygen output.
10281028

1029-
USE_MDFILE_AS_MAINPAGE = doc/basics.md
1029+
USE_MDFILE_AS_MAINPAGE = doc/basics_doxygen.md
10301030

10311031
#---------------------------------------------------------------------------
10321032
# Configuration options related to source browsing

doc/basics.md

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ available, we define the macro `SIMDJSON_HAS_STRING_VIEW`.
210210
When we detect that it is unavailable,
211211
we use [string-view-lite](https://github.com/martinmoene/string-view-lite) as a
212212
substitute. In such cases, we use the type alias `using string_view = nonstd::string_view;` to
213-
offer the same API, irrespective of the compiler and standard library. The macro
213+
offer the same API, irrespective of the compiler and standard library. The macro
214214
`SIMDJSON_HAS_STRING_VIEW` will be *undefined* to indicate that we emulate `string_view`.
215215

216216

@@ -572,12 +572,3 @@ Backwards Compatibility
572572
The only header file supported by simdjson is `simdjson.h`. Older versions of simdjson published a
573573
number of other include files such as `document.h` or `ParsedJson.h` alongside `simdjson.h`; these headers
574574
may be moved or removed in future versions.
575-
576-
577-
578-
Further Reading
579-
-------------
580-
581-
* [Performance](performance.md) shows some more advanced scenarios and how to tune for them.
582-
* [Implementation Selection](implementation-selection.md) describes runtime CPU detection and
583-
how you can work with it.

0 commit comments

Comments
 (0)