Skip to content

Commit f0c7933

Browse files
committed
Bump version to 18.1.0
1 parent 9324872 commit f0c7933

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

libcxx/include/__config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
// _LIBCPP_VERSION represents the version of libc++, which matches the version of LLVM.
6363
// Given a LLVM release LLVM XX.YY.ZZ (e.g. LLVM 17.0.1 == 17.00.01), _LIBCPP_VERSION is
6464
// defined to XXYYZZ.
65-
# define _LIBCPP_VERSION 180000
65+
# define _LIBCPP_VERSION 180100
6666

6767
# define _LIBCPP_CONCAT_IMPL(_X, _Y) _X##_Y
6868
# define _LIBCPP_CONCAT(_X, _Y) _LIBCPP_CONCAT_IMPL(_X, _Y)

llvm/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ if(NOT DEFINED LLVM_VERSION_MAJOR)
1919
set(LLVM_VERSION_MAJOR 18)
2020
endif()
2121
if(NOT DEFINED LLVM_VERSION_MINOR)
22-
set(LLVM_VERSION_MINOR 0)
22+
set(LLVM_VERSION_MINOR 1)
2323
endif()
2424
if(NOT DEFINED LLVM_VERSION_PATCH)
2525
set(LLVM_VERSION_PATCH 0)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
llvm_version_major = 18
2-
llvm_version_minor = 0
2+
llvm_version_minor = 1
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__ = (18, 0, 0)
5+
__versioninfo__ = (18, 1, 0)
66
__version__ = ".".join(str(v) for v in __versioninfo__) + "dev"
77

88
__all__ = []

0 commit comments

Comments
 (0)