Skip to content

Commit 8f701b5

Browse files
committed
Set version to 20.0.0git
LLVM 19 release is starting.
1 parent f2ccf80 commit 8f701b5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

cmake/Modules/LLVMVersion.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# The LLVM Version number information
22

33
if(NOT DEFINED LLVM_VERSION_MAJOR)
4-
set(LLVM_VERSION_MAJOR 19)
4+
set(LLVM_VERSION_MAJOR 20)
55
endif()
66
if(NOT DEFINED LLVM_VERSION_MINOR)
77
set(LLVM_VERSION_MINOR 0)

libcxx/include/__config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
// _LIBCPP_VERSION represents the version of libc++, which matches the version of LLVM.
2828
// Given a LLVM release LLVM XX.YY.ZZ (e.g. LLVM 17.0.1 == 17.00.01), _LIBCPP_VERSION is
2929
// defined to XXYYZZ.
30-
# define _LIBCPP_VERSION 190000
30+
# define _LIBCPP_VERSION 200000
3131

3232
# define _LIBCPP_CONCAT_IMPL(_X, _Y) _X##_Y
3333
# define _LIBCPP_CONCAT(_X, _Y) _LIBCPP_CONCAT_IMPL(_X, _Y)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
llvm_version_major = 19
1+
llvm_version_major = 20
22
llvm_version_minor = 0
33
llvm_version_patch = 0
44
llvm_version = "$llvm_version_major.$llvm_version_minor.$llvm_version_patch"

llvm/utils/lit/lit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__author__ = "Daniel Dunbar"
44
__email__ = "[email protected]"
5-
__versioninfo__ = (19, 0, 0)
5+
__versioninfo__ = (20, 0, 0)
66
__version__ = ".".join(str(v) for v in __versioninfo__) + "dev"
77

88
__all__ = []

0 commit comments

Comments
 (0)