[llvm-branch-commits] [llvm] 094cfd1 - Bump version to 17.0.5

Tobias Hieta via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Sun Nov 12 23:29:36 PST 2023


Author: Tobias Hieta
Date: 2023-11-13T08:29:19+01:00
New Revision: 094cfd14c813c050f6dea7ca98c4fda07e564578

URL: https://github.com/llvm/llvm-project/commit/094cfd14c813c050f6dea7ca98c4fda07e564578
DIFF: https://github.com/llvm/llvm-project/commit/094cfd14c813c050f6dea7ca98c4fda07e564578.diff

LOG: Bump version to 17.0.5

Added: 
    

Modified: 
    libcxx/include/__config
    llvm/CMakeLists.txt
    llvm/utils/gn/secondary/llvm/version.gni
    llvm/utils/lit/lit/__init__.py

Removed: 
    


################################################################################
diff  --git a/libcxx/include/__config b/libcxx/include/__config
index 55ae1481ec7a97f..10c056f313ffd11 100644
--- a/libcxx/include/__config
+++ b/libcxx/include/__config
@@ -40,7 +40,7 @@
 // _LIBCPP_VERSION represents the version of libc++, which matches the version of LLVM.
 // Given a LLVM release LLVM XX.YY.ZZ (e.g. LLVM 17.0.1 == 17.00.01), _LIBCPP_VERSION is
 // defined to XXYYZZ.
-#  define _LIBCPP_VERSION 170004
+#  define _LIBCPP_VERSION 170005
 
 #  define _LIBCPP_CONCAT_IMPL(_X, _Y) _X##_Y
 #  define _LIBCPP_CONCAT(_X, _Y) _LIBCPP_CONCAT_IMPL(_X, _Y)

diff  --git a/llvm/CMakeLists.txt b/llvm/CMakeLists.txt
index 2732d0a7e37d0d3..3d2ba21f30a95ca 100644
--- a/llvm/CMakeLists.txt
+++ b/llvm/CMakeLists.txt
@@ -15,7 +15,7 @@ if(NOT DEFINED LLVM_VERSION_MINOR)
   set(LLVM_VERSION_MINOR 0)
 endif()
 if(NOT DEFINED LLVM_VERSION_PATCH)
-  set(LLVM_VERSION_PATCH 4)
+  set(LLVM_VERSION_PATCH 5)
 endif()
 if(NOT DEFINED LLVM_VERSION_SUFFIX)
   set(LLVM_VERSION_SUFFIX)

diff  --git a/llvm/utils/gn/secondary/llvm/version.gni b/llvm/utils/gn/secondary/llvm/version.gni
index 046e2530915254f..9a96d9dcc7babdf 100644
--- a/llvm/utils/gn/secondary/llvm/version.gni
+++ b/llvm/utils/gn/secondary/llvm/version.gni
@@ -1,4 +1,4 @@
 llvm_version_major = 17
 llvm_version_minor = 0
-llvm_version_patch = 4
+llvm_version_patch = 5
 llvm_version = "$llvm_version_major.$llvm_version_minor.$llvm_version_patch"

diff  --git a/llvm/utils/lit/lit/__init__.py b/llvm/utils/lit/lit/__init__.py
index be0ab01db1bdb55..6b5635b8b43d0dc 100644
--- a/llvm/utils/lit/lit/__init__.py
+++ b/llvm/utils/lit/lit/__init__.py
@@ -2,7 +2,7 @@
 
 __author__ = "Daniel Dunbar"
 __email__ = "daniel at minormatter.com"
-__versioninfo__ = (17, 0, 4)
+__versioninfo__ = (17, 0, 5)
 __version__ = ".".join(str(v) for v in __versioninfo__) + "dev"
 
 __all__ = []


        


More information about the llvm-branch-commits mailing list