Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire committed Apr 11, 2024
1 parent 0ca9a62 commit 21972a4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.15)
project(simdutf
DESCRIPTION "Fast Unicode validation, transcoding and processing"
LANGUAGES CXX
VERSION 5.2.3
VERSION 5.2.4
)

include (TestBigEndian)
Expand Down Expand Up @@ -196,4 +196,4 @@ if(NOT SIMDUTF_SANITIZE)
WORKING_DIRECTORY ${PROJECT_BINARY_DIR}
)
endif()
endif()
endif()
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = simdutf
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = "5.2.3"
PROJECT_NUMBER = "5.2.4"

# 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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ Linux or macOS users might follow the following instructions if they have a rece

1. Pull the library in a directory
```
wget https://github.com/simdutf/simdutf/releases/download/v5.2.3/singleheader.zip
wget https://github.com/simdutf/simdutf/releases/download/v5.2.4/singleheader.zip
unzip singleheader.zip
```
2. Compile
Expand Down Expand Up @@ -196,7 +196,7 @@ Single-header version
You can create a single-header version of the library where
all of the code is put into two files (`simdutf.h` and `simdutf.cpp`).
We publish a zip archive containing these files, e.g., see
https://github.com/simdutf/simdutf/releases/download/v5.2.3/singleheader.zip
https://github.com/simdutf/simdutf/releases/download/v5.2.4/singleheader.zip

You may generate it on your own using a Python script.

Expand Down
4 changes: 2 additions & 2 deletions include/simdutf/simdutf_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#define SIMDUTF_SIMDUTF_VERSION_H

/** The version of simdutf being used (major.minor.revision) */
#define SIMDUTF_VERSION "5.2.3"
#define SIMDUTF_VERSION "5.2.4"

namespace simdutf {
enum {
Expand All @@ -19,7 +19,7 @@ enum {
/**
* The revision (major.minor.REVISION) of simdutf being used.
*/
SIMDUTF_VERSION_REVISION = 3
SIMDUTF_VERSION_REVISION = 4
};
} // namespace simdutf

Expand Down

0 comments on commit 21972a4

Please sign in to comment.