summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Stellard <tstellar@redhat.com>2023-04-19 05:45:13 -0700
committerTom Stellard <tstellar@redhat.com>2023-04-19 05:45:13 -0700
commit57c2b1e9232abec51c9ea89ff629d72fdec59f0b (patch)
treee7593be5d44747f6bea8ea9a271ac088465696d9
parent18ddebe1a1a9bde349441631365f0472e9693520 (diff)
downloadllvm-57c2b1e9232abec51c9ea89ff629d72fdec59f0b.tar.gz
Bump version to 16.0.3
-rw-r--r--libcxx/include/__config2
-rw-r--r--llvm/CMakeLists.txt2
-rw-r--r--llvm/utils/gn/secondary/llvm/version.gni2
-rw-r--r--llvm/utils/lit/lit/__init__.py2
4 files changed, 4 insertions, 4 deletions
diff --git a/libcxx/include/__config b/libcxx/include/__config
index 5e30a42174af..36bdbd8680db 100644
--- a/libcxx/include/__config
+++ b/libcxx/include/__config
@@ -38,7 +38,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 16.0.1 == 16.00.01), _LIBCPP_VERSION is
// defined to XXYYZZ.
-# define _LIBCPP_VERSION 160002
+# define _LIBCPP_VERSION 160003
# 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 1819151f3d63..451012627c6b 100644
--- a/llvm/CMakeLists.txt
+++ b/llvm/CMakeLists.txt
@@ -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 2)
+ set(LLVM_VERSION_PATCH 3)
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 a96d28393da7..8f97848eed63 100644
--- a/llvm/utils/gn/secondary/llvm/version.gni
+++ b/llvm/utils/gn/secondary/llvm/version.gni
@@ -1,4 +1,4 @@
llvm_version_major = 16
llvm_version_minor = 0
-llvm_version_patch = 2
+llvm_version_patch = 3
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 9283442d1bd5..af141923cede 100644
--- a/llvm/utils/lit/lit/__init__.py
+++ b/llvm/utils/lit/lit/__init__.py
@@ -2,7 +2,7 @@
__author__ = 'Daniel Dunbar'
__email__ = 'daniel@minormatter.com'
-__versioninfo__ = (16, 0, 2)
+__versioninfo__ = (16, 0, 3)
__version__ = '.'.join(str(v) for v in __versioninfo__) + 'dev'
__all__ = []