Skip to content

Commit

Permalink
Create major version 2.5.0 (#1677)
Browse files Browse the repository at this point in the history
  • Loading branch information
wmaxey authored May 1, 2024
1 parent 79e0c17 commit 92441d0
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion cub/cub/cmake/cub-config-version.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
include("${CMAKE_CURRENT_LIST_DIR}/cub-header-search.cmake")

set(CUB_VERSION_MAJOR 2)
set(CUB_VERSION_MINOR 4)
set(CUB_VERSION_MINOR 5)
set(CUB_VERSION_PATCH 0)
set(CUB_VERSION_TWEAK 0)
set(CUB_VERSION "${CUB_VERSION_MAJOR}.${CUB_VERSION_MINOR}.${CUB_VERSION_PATCH}.${CUB_VERSION_TWEAK}")
Expand Down
2 changes: 1 addition & 1 deletion cub/cub/version.cuh
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
* <tt>CUB_VERSION / 100 % 1000</tt> is the minor version.
* <tt>CUB_VERSION / 100000</tt> is the major version.
*/
#define CUB_VERSION 200400 // macro expansion with ## requires this to be a single value
#define CUB_VERSION 200500 // macro expansion with ## requires this to be a single value

/*! \def CUB_MAJOR_VERSION
* \brief The preprocessor macro \p CUB_MAJOR_VERSION encodes the
Expand Down
2 changes: 1 addition & 1 deletion lib/cmake/cccl/cccl-config-version.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
set(CCCL_VERSION_MAJOR 2)
set(CCCL_VERSION_MINOR 4)
set(CCCL_VERSION_MINOR 5)
set(CCCL_VERSION_PATCH 0)
set(CCCL_VERSION_TWEAK 0)

Expand Down
5 changes: 4 additions & 1 deletion libcudacxx/include/cuda/std/__cccl/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,14 @@
// SPDX-FileCopyrightText: Copyright (c) 2023 NVIDIA CORPORATION & AFFILIATES.
//
//===----------------------------------------------------------------------===//
// This file is somewhat automatically generated. Disable clang-format.
// clang-format off


#ifndef __CCCL_VERSION_H
#define __CCCL_VERSION_H

#define CCCL_VERSION 2004000
#define CCCL_VERSION 2005000
#define CCCL_MAJOR_VERSION (CCCL_VERSION / 1000000)
#define CCCL_MINOR_VERSION (((CCCL_VERSION / 1000) % 1000))
#define CCCL_PATCH_VERSION (CCCL_VERSION % 1000)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
include("${CMAKE_CURRENT_LIST_DIR}/libcudacxx-header-search.cmake")

set(libcudacxx_VERSION_MAJOR 2)
set(libcudacxx_VERSION_MINOR 4)
set(libcudacxx_VERSION_MINOR 5)
set(libcudacxx_VERSION_PATCH 0)
set(libcudacxx_VERSION_TWEAK 0)

Expand Down
2 changes: 1 addition & 1 deletion thrust/thrust/cmake/thrust-config-version.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
include("${CMAKE_CURRENT_LIST_DIR}/thrust-header-search.cmake")

set(THRUST_VERSION_MAJOR 2)
set(THRUST_VERSION_MINOR 4)
set(THRUST_VERSION_MINOR 5)
set(THRUST_VERSION_PATCH 0) # Thrust: "subminor" CMake: "patch"
set(THRUST_VERSION_TWEAK 0)
set(THRUST_VERSION "${THRUST_VERSION_MAJOR}.${THRUST_VERSION_MINOR}.${THRUST_VERSION_PATCH}.${THRUST_VERSION_TWEAK}")
Expand Down
2 changes: 1 addition & 1 deletion thrust/thrust/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
* <tt>THRUST_VERSION / 100 % 1000</tt> is the minor version.
* <tt>THRUST_VERSION / 100000</tt> is the major version.
*/
#define THRUST_VERSION 200400 // macro expansion with ## requires this to be a single value
#define THRUST_VERSION 200500 // macro expansion with ## requires this to be a single value

/*! \def THRUST_MAJOR_VERSION
* \brief The preprocessor macro \p THRUST_MAJOR_VERSION encodes the
Expand Down

0 comments on commit 92441d0

Please sign in to comment.