0
0
mirror of https://github.com/llvm/llvm-project.git synced 2025-04-21 16:36:12 +00:00

Bump version to 19.1.6

This commit is contained in:
Tobias Hieta 2024-12-13 14:49:03 +01:00
parent ab4b5a2db5
commit c9e72b3945
No known key found for this signature in database
GPG Key ID: 44F2485E45D59042
5 changed files with 5 additions and 5 deletions
cmake/Modules
libcxx/include
llvm/utils
gn/secondary/llvm
lit/lit
mlgo-utils/mlgo

@ -7,7 +7,7 @@ if(NOT DEFINED LLVM_VERSION_MINOR)
set(LLVM_VERSION_MINOR 1)
endif()
if(NOT DEFINED LLVM_VERSION_PATCH)
set(LLVM_VERSION_PATCH 5)
set(LLVM_VERSION_PATCH 6)
endif()
if(NOT DEFINED LLVM_VERSION_SUFFIX)
set(LLVM_VERSION_SUFFIX)

@ -27,7 +27,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 190105
# define _LIBCPP_VERSION 190106
# define _LIBCPP_CONCAT_IMPL(_X, _Y) _X##_Y
# define _LIBCPP_CONCAT(_X, _Y) _LIBCPP_CONCAT_IMPL(_X, _Y)

@ -1,4 +1,4 @@
llvm_version_major = 19
llvm_version_minor = 1
llvm_version_patch = 5
llvm_version_patch = 6
llvm_version = "$llvm_version_major.$llvm_version_minor.$llvm_version_patch"

@ -2,7 +2,7 @@
__author__ = "Daniel Dunbar"
__email__ = "daniel@minormatter.com"
__versioninfo__ = (19, 1, 5)
__versioninfo__ = (19, 1, 6)
__version__ = ".".join(str(v) for v in __versioninfo__) + "dev"
__all__ = []

@ -4,7 +4,7 @@
from datetime import timezone, datetime
__versioninfo__ = (19, 1, 5)
__versioninfo__ = (19, 1, 6)
__version__ = (
".".join(str(v) for v in __versioninfo__)
+ "dev"