Bump version to 17.0.3
authorTobias Hieta <tobias@hieta.se>
Tue, 10 Oct 2023 06:47:40 +0000 (08:47 +0200)
committerTobias Hieta <tobias@hieta.se>
Tue, 10 Oct 2023 06:47:40 +0000 (08:47 +0200)
libcxx/include/__config
llvm/CMakeLists.txt
llvm/utils/gn/secondary/llvm/version.gni
llvm/utils/lit/lit/__init__.py

index c37d643..3859c02 100644 (file)
@@ -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 170002
+#  define _LIBCPP_VERSION 170003
 
 #  define _LIBCPP_CONCAT_IMPL(_X, _Y) _X##_Y
 #  define _LIBCPP_CONCAT(_X, _Y) _LIBCPP_CONCAT_IMPL(_X, _Y)
index 0d72593..41cae0e 100644 (file)
@@ -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 2)
+  set(LLVM_VERSION_PATCH 3)
 endif()
 if(NOT DEFINED LLVM_VERSION_SUFFIX)
   set(LLVM_VERSION_SUFFIX)
index 27b6fa8..ba8ed00 100644 (file)
@@ -1,4 +1,4 @@
 llvm_version_major = 17
 llvm_version_minor = 0
-llvm_version_patch = 2
+llvm_version_patch = 3
 llvm_version = "$llvm_version_major.$llvm_version_minor.$llvm_version_patch"
index db19e84..0f8c5a8 100644 (file)
@@ -2,7 +2,7 @@
 
 __author__ = "Daniel Dunbar"
 __email__ = "daniel@minormatter.com"
-__versioninfo__ = (17, 0, 2)
+__versioninfo__ = (17, 0, 3)
 __version__ = ".".join(str(v) for v in __versioninfo__) + "dev"
 
 __all__ = []