Bump version to 15.0.4
authorTobias Hieta <tobias@hieta.se>
Mon, 24 Oct 2022 11:45:36 +0000 (13:45 +0200)
committerTobias Hieta <tobias@hieta.se>
Mon, 24 Oct 2022 11:45:36 +0000 (13:45 +0200)
libcxx/include/__config
llvm/CMakeLists.txt
llvm/utils/gn/secondary/llvm/version.gni
llvm/utils/lit/lit/__init__.py
utils/bazel/llvm-project-overlay/clang/BUILD.bazel
utils/bazel/llvm-project-overlay/clang/include/clang/Config/config.h
utils/bazel/llvm-project-overlay/lld/BUILD.bazel
utils/bazel/llvm-project-overlay/llvm/include/llvm/Config/llvm-config.h

index 589b5c3..810189c 100644 (file)
@@ -36,7 +36,7 @@
 
 #ifdef __cplusplus
 
-#  define _LIBCPP_VERSION 15003
+#  define _LIBCPP_VERSION 15004
 
 #  define _LIBCPP_CONCAT_IMPL(_X, _Y) _X##_Y
 #  define _LIBCPP_CONCAT(_X, _Y) _LIBCPP_CONCAT_IMPL(_X, _Y)
index 1a45f2e..3d6f5e6 100644 (file)
@@ -22,7 +22,7 @@ if(NOT DEFINED LLVM_VERSION_MINOR)
   set(LLVM_VERSION_MINOR 0)
 endif()
 if(NOT DEFINED LLVM_VERSION_PATCH)
-  set(LLVM_VERSION_PATCH 3)
+  set(LLVM_VERSION_PATCH 4)
 endif()
 if(NOT DEFINED LLVM_VERSION_SUFFIX)
   set(LLVM_VERSION_SUFFIX)
index 6d64da0..3b890e0 100644 (file)
@@ -1,4 +1,4 @@
 llvm_version_major = 15
 llvm_version_minor = 0
-llvm_version_patch = 3
+llvm_version_patch = 4
 llvm_version = "$llvm_version_major.$llvm_version_minor.$llvm_version_patch"
index 5cb7ccd..04f6e94 100644 (file)
@@ -2,7 +2,7 @@
 
 __author__ = 'Daniel Dunbar'
 __email__ = 'daniel@minormatter.com'
-__versioninfo__ = (15, 0, 3)
+__versioninfo__ = (15, 0, 4)
 __version__ = '.'.join(str(v) for v in __versioninfo__) + 'dev'
 
 __all__ = []
index 6cb8889..96b4627 100644 (file)
@@ -358,11 +358,11 @@ genrule(
     name = "basic_version_gen",
     outs = ["include/clang/Basic/Version.inc"],
     cmd = (
-        "echo '#define CLANG_VERSION 15.0.3' >> $@\n" +
+        "echo '#define CLANG_VERSION 15.0.4' >> $@\n" +
         "echo '#define CLANG_VERSION_MAJOR 15' >> $@\n" +
         "echo '#define CLANG_VERSION_MINOR 0' >> $@\n" +
-        "echo '#define CLANG_VERSION_PATCHLEVEL 3' >> $@\n" +
-        "echo '#define CLANG_VERSION_STRING \"15.0.3\"' >> $@\n"
+        "echo '#define CLANG_VERSION_PATCHLEVEL 4' >> $@\n" +
+        "echo '#define CLANG_VERSION_STRING \"15.0.4\"' >> $@\n"
     ),
 )
 
index cedeb0a..5d15749 100644 (file)
@@ -93,7 +93,7 @@
 /* CLANG_HAVE_RLIMITS defined conditionally below */
 
 /* The LLVM product name and version */
-#define BACKEND_PACKAGE_STRING "LLVM 15.0.3"
+#define BACKEND_PACKAGE_STRING "LLVM 15.0.4"
 
 /* Linker version detected at compile time. */
 /* #undef HOST_LINK_VERSION */
index 139298d..e3a8c98 100644 (file)
@@ -13,7 +13,7 @@ package(
 genrule(
     name = "config_version_gen",
     outs = ["include/lld/Common/Version.inc"],
-    cmd = "echo '#define LLD_VERSION_STRING \"15.0.3\"' > $@",
+    cmd = "echo '#define LLD_VERSION_STRING \"15.0.4\"' > $@",
 )
 
 genrule(
index 37bb4cf..7a86202 100644 (file)
 #define LLVM_VERSION_MINOR 0
 
 /* Patch version of the LLVM API */
-#define LLVM_VERSION_PATCH 3
+#define LLVM_VERSION_PATCH 4
 
 /* LLVM version string */
-#define LLVM_VERSION_STRING "15.0.3"
+#define LLVM_VERSION_STRING "15.0.4"
 
 /* Whether LLVM records statistics for use with GetStatistics(),
  * PrintStatistics() or PrintStatisticsJSON()