Skip to content

Commit 92441d0

Browse files
authored
Create major version 2.5.0 (NVIDIA#1677)
1 parent 79e0c17 commit 92441d0

File tree

7 files changed

+10
-7
lines changed

7 files changed

+10
-7
lines changed

cub/cub/cmake/cub-config-version.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
include("${CMAKE_CURRENT_LIST_DIR}/cub-header-search.cmake")
33

44
set(CUB_VERSION_MAJOR 2)
5-
set(CUB_VERSION_MINOR 4)
5+
set(CUB_VERSION_MINOR 5)
66
set(CUB_VERSION_PATCH 0)
77
set(CUB_VERSION_TWEAK 0)
88
set(CUB_VERSION "${CUB_VERSION_MAJOR}.${CUB_VERSION_MINOR}.${CUB_VERSION_PATCH}.${CUB_VERSION_TWEAK}")

cub/cub/version.cuh

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
* <tt>CUB_VERSION / 100 % 1000</tt> is the minor version.
5959
* <tt>CUB_VERSION / 100000</tt> is the major version.
6060
*/
61-
#define CUB_VERSION 200400 // macro expansion with ## requires this to be a single value
61+
#define CUB_VERSION 200500 // macro expansion with ## requires this to be a single value
6262

6363
/*! \def CUB_MAJOR_VERSION
6464
* \brief The preprocessor macro \p CUB_MAJOR_VERSION encodes the

lib/cmake/cccl/cccl-config-version.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
set(CCCL_VERSION_MAJOR 2)
2-
set(CCCL_VERSION_MINOR 4)
2+
set(CCCL_VERSION_MINOR 5)
33
set(CCCL_VERSION_PATCH 0)
44
set(CCCL_VERSION_TWEAK 0)
55

libcudacxx/include/cuda/std/__cccl/version.h

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,14 @@
77
// SPDX-FileCopyrightText: Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES.
88
//
99
//===----------------------------------------------------------------------===//
10+
// This file is somewhat automatically generated. Disable clang-format.
11+
// clang-format off
12+
1013

1114
#ifndef __CCCL_VERSION_H
1215
#define __CCCL_VERSION_H
1316

14-
#define CCCL_VERSION 2004000
17+
#define CCCL_VERSION 2005000
1518
#define CCCL_MAJOR_VERSION (CCCL_VERSION / 1000000)
1619
#define CCCL_MINOR_VERSION (((CCCL_VERSION / 1000) % 1000))
1720
#define CCCL_PATCH_VERSION (CCCL_VERSION % 1000)

libcudacxx/lib/cmake/libcudacxx/libcudacxx-config-version.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
include("${CMAKE_CURRENT_LIST_DIR}/libcudacxx-header-search.cmake")
33

44
set(libcudacxx_VERSION_MAJOR 2)
5-
set(libcudacxx_VERSION_MINOR 4)
5+
set(libcudacxx_VERSION_MINOR 5)
66
set(libcudacxx_VERSION_PATCH 0)
77
set(libcudacxx_VERSION_TWEAK 0)
88

thrust/thrust/cmake/thrust-config-version.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
include("${CMAKE_CURRENT_LIST_DIR}/thrust-header-search.cmake")
33

44
set(THRUST_VERSION_MAJOR 2)
5-
set(THRUST_VERSION_MINOR 4)
5+
set(THRUST_VERSION_MINOR 5)
66
set(THRUST_VERSION_PATCH 0) # Thrust: "subminor" CMake: "patch"
77
set(THRUST_VERSION_TWEAK 0)
88
set(THRUST_VERSION "${THRUST_VERSION_MAJOR}.${THRUST_VERSION_MINOR}.${THRUST_VERSION_PATCH}.${THRUST_VERSION_TWEAK}")

thrust/thrust/version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
* <tt>THRUST_VERSION / 100 % 1000</tt> is the minor version.
6262
* <tt>THRUST_VERSION / 100000</tt> is the major version.
6363
*/
64-
#define THRUST_VERSION 200400 // macro expansion with ## requires this to be a single value
64+
#define THRUST_VERSION 200500 // macro expansion with ## requires this to be a single value
6565

6666
/*! \def THRUST_MAJOR_VERSION
6767
* \brief The preprocessor macro \p THRUST_MAJOR_VERSION encodes the

0 commit comments

Comments
 (0)