Skip to content
Snippets Groups Projects
Unverified Commit d5498c39 authored by Tobias Hieta's avatar Tobias Hieta
Browse files

Bump version to 19.1.2

parent d401987f
Branches
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ if(NOT DEFINED LLVM_VERSION_MINOR) ...@@ -7,7 +7,7 @@ if(NOT DEFINED LLVM_VERSION_MINOR)
set(LLVM_VERSION_MINOR 1) set(LLVM_VERSION_MINOR 1)
endif() endif()
if(NOT DEFINED LLVM_VERSION_PATCH) if(NOT DEFINED LLVM_VERSION_PATCH)
set(LLVM_VERSION_PATCH 1) set(LLVM_VERSION_PATCH 2)
endif() endif()
if(NOT DEFINED LLVM_VERSION_SUFFIX) if(NOT DEFINED LLVM_VERSION_SUFFIX)
set(LLVM_VERSION_SUFFIX) set(LLVM_VERSION_SUFFIX)
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
// _LIBCPP_VERSION represents the version of libc++, which matches the version of LLVM. // _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 // Given a LLVM release LLVM XX.YY.ZZ (e.g. LLVM 17.0.1 == 17.00.01), _LIBCPP_VERSION is
// defined to XXYYZZ. // defined to XXYYZZ.
# define _LIBCPP_VERSION 190101 # define _LIBCPP_VERSION 190102
# define _LIBCPP_CONCAT_IMPL(_X, _Y) _X##_Y # define _LIBCPP_CONCAT_IMPL(_X, _Y) _X##_Y
# define _LIBCPP_CONCAT(_X, _Y) _LIBCPP_CONCAT_IMPL(_X, _Y) # define _LIBCPP_CONCAT(_X, _Y) _LIBCPP_CONCAT_IMPL(_X, _Y)
......
llvm_version_major = 19 llvm_version_major = 19
llvm_version_minor = 1 llvm_version_minor = 1
llvm_version_patch = 1 llvm_version_patch = 2
llvm_version = "$llvm_version_major.$llvm_version_minor.$llvm_version_patch" llvm_version = "$llvm_version_major.$llvm_version_minor.$llvm_version_patch"
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
__author__ = "Daniel Dunbar" __author__ = "Daniel Dunbar"
__email__ = "daniel@minormatter.com" __email__ = "daniel@minormatter.com"
__versioninfo__ = (19, 1, 1) __versioninfo__ = (19, 1, 2)
__version__ = ".".join(str(v) for v in __versioninfo__) + "dev" __version__ = ".".join(str(v) for v in __versioninfo__) + "dev"
__all__ = [] __all__ = []
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
from datetime import timezone, datetime from datetime import timezone, datetime
__versioninfo__ = (19, 1, 1) __versioninfo__ = (19, 1, 2)
__version__ = ( __version__ = (
".".join(str(v) for v in __versioninfo__) ".".join(str(v) for v in __versioninfo__)
+ "dev" + "dev"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment