Skip to content

Commit

Permalink
Bump version to 15.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tru committed Sep 15, 2022
1 parent c0141f3 commit 3637f34
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion llvm/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 0)
set(LLVM_VERSION_PATCH 1)
endif()
if(NOT DEFINED LLVM_VERSION_SUFFIX)
set(LLVM_VERSION_SUFFIX)
Expand Down
2 changes: 1 addition & 1 deletion llvm/utils/gn/secondary/llvm/version.gni
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
llvm_version_major = 15
llvm_version_minor = 0
llvm_version_patch = 0
llvm_version_patch = 1
llvm_version = "$llvm_version_major.$llvm_version_minor.$llvm_version_patch"
2 changes: 1 addition & 1 deletion llvm/utils/lit/lit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = 'Daniel Dunbar'
__email__ = 'daniel@minormatter.com'
__versioninfo__ = (15, 0, 0)
__versioninfo__ = (15, 0, 1)
__version__ = '.'.join(str(v) for v in __versioninfo__) + 'dev'

__all__ = []
6 changes: 3 additions & 3 deletions utils/bazel/llvm-project-overlay/clang/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -358,11 +358,11 @@ genrule(
name = "basic_version_gen",
outs = ["include/clang/Basic/Version.inc"],
cmd = (
"echo '#define CLANG_VERSION 15.0.0' >> $@\n" +
"echo '#define CLANG_VERSION 15.0.1' >> $@\n" +
"echo '#define CLANG_VERSION_MAJOR 15' >> $@\n" +
"echo '#define CLANG_VERSION_MINOR 0' >> $@\n" +
"echo '#define CLANG_VERSION_PATCHLEVEL 0' >> $@\n" +
"echo '#define CLANG_VERSION_STRING \"15.0.0\"' >> $@\n"
"echo '#define CLANG_VERSION_PATCHLEVEL 1' >> $@\n" +
"echo '#define CLANG_VERSION_STRING \"15.0.1\"' >> $@\n"
),
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
/* CLANG_HAVE_RLIMITS defined conditionally below */

/* The LLVM product name and version */
#define BACKEND_PACKAGE_STRING "LLVM 15.0.0git"
#define BACKEND_PACKAGE_STRING "LLVM 15.0.1"

/* Linker version detected at compile time. */
/* #undef HOST_LINK_VERSION */
Expand Down
2 changes: 1 addition & 1 deletion utils/bazel/llvm-project-overlay/lld/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ package(
genrule(
name = "config_version_gen",
outs = ["include/lld/Common/Version.inc"],
cmd = "echo '#define LLD_VERSION_STRING \"15.0.0\"' > $@",
cmd = "echo '#define LLD_VERSION_STRING \"15.0.1\"' > $@",
)

genrule(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@
#define LLVM_VERSION_MINOR 0

/* Patch version of the LLVM API */
#define LLVM_VERSION_PATCH 0
#define LLVM_VERSION_PATCH 1

/* LLVM version string */
#define LLVM_VERSION_STRING "15.0.0git"
#define LLVM_VERSION_STRING "15.0.1"

/* Whether LLVM records statistics for use with GetStatistics(),
* PrintStatistics() or PrintStatisticsJSON()
Expand Down

0 comments on commit 3637f34

Please sign in to comment.