[llvm-branch-commits] [llvm] 02aa966 - Bump version to 16.0.2
Tom Stellard via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Tue Apr 4 22:25:13 PDT 2023
Author: Tom Stellard
Date: 2023-04-04T22:24:47-07:00
New Revision: 02aa966c135172885182ddd6f5d76883c2402bed
URL: https://github.com/llvm/llvm-project/commit/02aa966c135172885182ddd6f5d76883c2402bed
DIFF: https://github.com/llvm/llvm-project/commit/02aa966c135172885182ddd6f5d76883c2402bed.diff
LOG: Bump version to 16.0.2
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 581ada45b3f0..5e30a42174af 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 160001
+# define _LIBCPP_VERSION 160002
# 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 670fdb205654..1819151f3d63 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 1)
+ set(LLVM_VERSION_PATCH 2)
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 261278ec41c9..a96d28393da7 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 = 1
+llvm_version_patch = 2
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 6c6de55372d4..9283442d1bd5 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__ = (16, 0, 1)
+__versioninfo__ = (16, 0, 2)
__version__ = '.'.join(str(v) for v in __versioninfo__) + 'dev'
__all__ = []
More information about the llvm-branch-commits
mailing list