Skip to content

Commit 480b4cc

Browse files
committed
DOC
1 parent b3429fb commit 480b4cc

File tree

16 files changed

+25
-21
lines changed

16 files changed

+25
-21
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# cuDF 23.02.00 (Date TBD)
2+
3+
Please see https://github.com/rapidsai/cudf/releases/tag/v23.02.00a for the latest changes to this development branch.
4+
15
# cuDF 22.12.00 (Date TBD)
26

37
Please see https://github.com/rapidsai/cudf/releases/tag/v22.12.00a for the latest changes to this development branch.

ci/checks/style.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ LANG=C.UTF-8
1414
. /opt/conda/etc/profile.d/conda.sh
1515
conda activate rapids
1616

17-
FORMAT_FILE_URL=https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-22.12/cmake-format-rapids-cmake.json
17+
FORMAT_FILE_URL=https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-23.02/cmake-format-rapids-cmake.json
1818
export RAPIDS_CMAKE_FORMAT_FILE=/tmp/rapids_cmake_ci/cmake-formats-rapids-cmake.json
1919
mkdir -p $(dirname ${RAPIDS_CMAKE_FORMAT_FILE})
2020
wget -O ${RAPIDS_CMAKE_FORMAT_FILE} ${FORMAT_FILE_URL}

ci/gpu/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export INSTALL_DASK_MAIN=1
3838
export DASK_STABLE_VERSION="2022.9.2"
3939

4040
# ucx-py version
41-
export UCX_PY_VERSION='0.29.*'
41+
export UCX_PY_VERSION='0.30.*'
4242

4343
################################################################################
4444
# TRAP - Setup trap for removing jitify cache

ci/gpu/java.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export GIT_DESCRIBE_TAG=`git describe --tags`
3131
export MINOR_VERSION=`echo $GIT_DESCRIBE_TAG | grep -o -E '([0-9]+\.[0-9]+)'`
3232

3333
# ucx-py version
34-
export UCX_PY_VERSION='0.29.*'
34+
export UCX_PY_VERSION='0.30.*'
3535

3636
################################################################################
3737
# TRAP - Setup trap for removing jitify cache

conda/environments/all_cuda-115_arch-x86_64.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dependencies:
2020
- cupy>=9.5.0,<12.0.0a0
2121
- cxx-compiler
2222
- cython>=0.29,<0.30
23-
- dask-cuda=22.12.*
23+
- dask-cuda=23.02.*
2424
- dask>=2022.9.2
2525
- distributed>=2022.9.2
2626
- dlpack>=0.5,<0.6.0a0
@@ -59,7 +59,7 @@ dependencies:
5959
- python-snappy>=0.6.0
6060
- python>=3.8,<3.10
6161
- pytorch<1.12.0
62-
- rmm=22.12.*
62+
- rmm=23.02.*
6363
- s3fs>=2022.3.0
6464
- scikit-build>=0.13.1
6565
- scipy

cpp/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ rapids_cuda_init_architectures(CUDF)
2525

2626
project(
2727
CUDF
28-
VERSION 22.12.00
28+
VERSION 23.02.00
2929
LANGUAGES C CXX CUDA
3030
)
3131
if(CMAKE_CUDA_COMPILER_ID STREQUAL "NVIDIA" AND CMAKE_CUDA_COMPILER_VERSION VERSION_LESS 11.5)

cpp/doxygen/Doxyfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "libcudf"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 22.12.00
41+
PROJECT_NUMBER = 23.02.00
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a
@@ -2162,7 +2162,7 @@ SKIP_FUNCTION_MACROS = YES
21622162
# the path). If a tag file is not located in the directory in which doxygen is
21632163
# run, you must also specify the path to the tagfile here.
21642164

2165-
TAGFILES = rmm.tag=https://docs.rapids.ai/api/librmm/22.12
2165+
TAGFILES = rmm.tag=https://docs.rapids.ai/api/librmm/23.02
21662166

21672167
# When a file name is specified after GENERATE_TAGFILE, doxygen will create a
21682168
# tag file that is based on the input files it reads. See section "Linking to

cpp/examples/basic/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ file(
1616
)
1717
include(${CMAKE_BINARY_DIR}/cmake/get_cpm.cmake)
1818

19-
set(CUDF_TAG branch-22.12)
19+
set(CUDF_TAG branch-23.02)
2020
CPMFindPackage(
2121
NAME cudf GIT_REPOSITORY https://github.com/rapidsai/cudf
2222
GIT_TAG ${CUDF_TAG}

cpp/examples/strings/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ file(
1616
)
1717
include(${CMAKE_BINARY_DIR}/cmake/get_cpm.cmake)
1818

19-
set(CUDF_TAG branch-22.12)
19+
set(CUDF_TAG branch-23.02)
2020
CPMFindPackage(
2121
NAME cudf GIT_REPOSITORY https://github.com/rapidsai/cudf
2222
GIT_TAG ${CUDF_TAG}

cpp/libcudf_kafka/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ include(rapids-find)
2222

2323
project(
2424
CUDA_KAFKA
25-
VERSION 22.12.00
25+
VERSION 23.02.00
2626
LANGUAGES CXX
2727
)
2828

0 commit comments

Comments
 (0)