Skip to content

Commit

Permalink
Patch release.
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire committed May 26, 2022
1 parent f91a1ae commit a410c72
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.14)
project(
simdjson
# The version number is modified by tools/release.py
VERSION 2.0.0
VERSION 2.0.1
DESCRIPTION "Parsing gigabytes of JSON per second"
HOMEPAGE_URL "https://simdjson.org/"
LANGUAGES CXX C
Expand Down
2 changes: 1 addition & 1 deletion Doxyfile
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = simdjson
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = "2.0.0"
PROJECT_NUMBER = "2.0.1"

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
4 changes: 2 additions & 2 deletions include/simdjson/simdjson_version.h
Expand Up @@ -4,7 +4,7 @@
#define SIMDJSON_SIMDJSON_VERSION_H

/** The version of simdjson being used (major.minor.revision) */
#define SIMDJSON_VERSION 2.0.0
#define SIMDJSON_VERSION 2.0.1

namespace simdjson {
enum {
Expand All @@ -19,7 +19,7 @@ enum {
/**
* The revision (major.minor.REVISION) of simdjson being used.
*/
SIMDJSON_VERSION_REVISION = 0
SIMDJSON_VERSION_REVISION = 1
};
} // namespace simdjson

Expand Down
2 changes: 1 addition & 1 deletion singleheader/simdjson.cpp
@@ -1,4 +1,4 @@
/* auto-generated on 2022-05-26 14:07:15 -0400. Do not edit! */
/* auto-generated on 2022-05-26 16:15:49 -0400. Do not edit! */
/* begin file src/simdjson.cpp */
#include "simdjson.h"

Expand Down
6 changes: 3 additions & 3 deletions singleheader/simdjson.h
@@ -1,4 +1,4 @@
/* auto-generated on 2022-05-26 14:07:15 -0400. Do not edit! */
/* auto-generated on 2022-05-26 16:15:49 -0400. Do not edit! */
/* begin file include/simdjson.h */
#ifndef SIMDJSON_H
#define SIMDJSON_H
Expand Down Expand Up @@ -43,7 +43,7 @@
#define SIMDJSON_SIMDJSON_VERSION_H

/** The version of simdjson being used (major.minor.revision) */
#define SIMDJSON_VERSION 2.0.0
#define SIMDJSON_VERSION 2.0.1

namespace simdjson {
enum {
Expand All @@ -58,7 +58,7 @@ enum {
/**
* The revision (major.minor.REVISION) of simdjson being used.
*/
SIMDJSON_VERSION_REVISION = 0
SIMDJSON_VERSION_REVISION = 1
};
} // namespace simdjson

Expand Down

0 comments on commit a410c72

Please sign in to comment.