version 5.4.15
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 6110026..6c0f562 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -3,7 +3,7 @@
 project(simdutf
   DESCRIPTION "Fast Unicode validation, transcoding and processing"
   LANGUAGES CXX
-  VERSION 5.3.14
+  VERSION 5.4.15
 )
 
 include (TestBigEndian)
diff --git a/Doxyfile b/Doxyfile
index 37858db..7b31871 100644
--- a/Doxyfile
+++ b/Doxyfile
@@ -38,7 +38,7 @@
 # could be handy for archiving the generated documentation or if some version
 # control system is used.
 
-PROJECT_NUMBER         = "5.3.14"
+PROJECT_NUMBER         = "5.4.15"
 
 # 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
diff --git a/README.md b/README.md
index 382a54e..9c5c718 100644
--- a/README.md
+++ b/README.md
@@ -143,7 +143,7 @@
 
 1. Pull the library in a directory
    ```
-   wget https://github.com/simdutf/simdutf/releases/download/v5.3.14/singleheader.zip
+   wget https://github.com/simdutf/simdutf/releases/download/v5.4.15/singleheader.zip
    unzip singleheader.zip
    ```
 2. Compile
@@ -201,7 +201,7 @@
 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.3.14/singleheader.zip
+https://github.com/simdutf/simdutf/releases/download/v5.4.15/singleheader.zip
 
 You may generate it on your own using a Python script.
 
diff --git a/include/simdutf/simdutf_version.h b/include/simdutf/simdutf_version.h
index 06ebcf8..de623ff 100644
--- a/include/simdutf/simdutf_version.h
+++ b/include/simdutf/simdutf_version.h
@@ -4,7 +4,7 @@
 #define SIMDUTF_SIMDUTF_VERSION_H
 
 /** The version of simdutf being used (major.minor.revision) */
-#define SIMDUTF_VERSION "5.3.14"
+#define SIMDUTF_VERSION "5.4.15"
 
 namespace simdutf {
 enum {
@@ -15,11 +15,11 @@
   /**
    * The minor version (major.MINOR.revision) of simdutf being used.
    */
-  SIMDUTF_VERSION_MINOR = 3,
+  SIMDUTF_VERSION_MINOR = 4,
   /**
    * The revision (major.minor.REVISION) of simdutf being used.
    */
-  SIMDUTF_VERSION_REVISION = 14
+  SIMDUTF_VERSION_REVISION = 15
 };
 } // namespace simdutf