Skip to content

Commit e19b7dc

Browse files
committed
Bump version to 17.0.1
1 parent 01f8ba7 commit e19b7dc

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

libcxx/include/__config

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
// _LIBCPP_VERSION represents the version of libc++, which matches the version of LLVM.
4141
// Given a LLVM release LLVM XX.YY.ZZ (e.g. LLVM 17.0.1 == 17.00.01), _LIBCPP_VERSION is
4242
// defined to XXYYZZ.
43-
# define _LIBCPP_VERSION 170000
43+
# define _LIBCPP_VERSION 170001
4444

4545
# define _LIBCPP_CONCAT_IMPL(_X, _Y) _X##_Y
4646
# define _LIBCPP_CONCAT(_X, _Y) _LIBCPP_CONCAT_IMPL(_X, _Y)

llvm/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ if(NOT DEFINED LLVM_VERSION_MINOR)
1515
set(LLVM_VERSION_MINOR 0)
1616
endif()
1717
if(NOT DEFINED LLVM_VERSION_PATCH)
18-
set(LLVM_VERSION_PATCH 0)
18+
set(LLVM_VERSION_PATCH 1)
1919
endif()
2020
if(NOT DEFINED LLVM_VERSION_SUFFIX)
2121
set(LLVM_VERSION_SUFFIX)
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
llvm_version_major = 17
22
llvm_version_minor = 0
3-
llvm_version_patch = 0
3+
llvm_version_patch = 1
44
llvm_version = "$llvm_version_major.$llvm_version_minor.$llvm_version_patch"

llvm/utils/lit/lit/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

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

88
__all__ = []

0 commit comments

Comments
 (0)