diff --git a/CHANGELOG.md b/CHANGELOG.md index 3111783f02c..deb951fe943 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# cuGraph 22.08.00 (Date TBD) + +Please see https://github.com/rapidsai/cugraph/releases/tag/v22.08.00a for the latest changes to this development branch. + # cuGraph 22.06.00 (Date TBD) Please see https://github.com/rapidsai/cugraph/releases/tag/v22.06.00a for the latest changes to this development branch. diff --git a/ci/benchmark/build.sh b/ci/benchmark/build.sh index 65e5df8ac0b..5f50c8f3ecf 100644 --- a/ci/benchmark/build.sh +++ b/ci/benchmark/build.sh @@ -48,7 +48,7 @@ export DATASETS_DIR=${WORKSPACE}/datasets export BENCHMARKS_DIR=${WORKSPACE}/benchmarks # ucx-py version -export UCX_PY_VERSION='0.26.*' +export UCX_PY_VERSION='0.27.*' ########################################## # Environment Setup # diff --git a/ci/cpu/build.sh b/ci/cpu/build.sh index 919671547b9..78565bdbab0 100755 --- a/ci/cpu/build.sh +++ b/ci/cpu/build.sh @@ -34,7 +34,7 @@ export CMAKE_GENERATOR="Ninja" export CONDA_BLD_DIR="${WORKSPACE}/.conda-bld" # ucx-py version -export UCX_PY_VERSION='0.26.*' +export UCX_PY_VERSION='0.27.*' ################################################################################ # SETUP - Check environment diff --git a/ci/gpu/build.sh b/ci/gpu/build.sh index 271e7e61fbf..53bf14796d0 100755 --- a/ci/gpu/build.sh +++ b/ci/gpu/build.sh @@ -41,7 +41,7 @@ export MINOR_VERSION=`echo $GIT_DESCRIBE_TAG | grep -o -E '([0-9]+\.[0-9]+)'` unset GIT_DESCRIBE_TAG # ucx-py version -export UCX_PY_VERSION='0.26.*' +export UCX_PY_VERSION='0.27.*' ################################################################################ # SETUP - Check environment diff --git a/conda/environments/cugraph_dev_cuda11.2.yml b/conda/environments/cugraph_dev_cuda11.2.yml index 8bbc224a415..b626e24cf26 100644 --- a/conda/environments/cugraph_dev_cuda11.2.yml +++ b/conda/environments/cugraph_dev_cuda11.2.yml @@ -6,20 +6,20 @@ channels: - conda-forge dependencies: - cudatoolkit=11.2 -- libcugraphops=22.06.* -- cudf=22.06.* -- libcudf=22.06.* -- rmm=22.06.* -- librmm=22.06.* +- libcugraphops=22.08.* +- cudf=22.08.* +- libcudf=22.08.* +- rmm=22.08.* +- librmm=22.08.* - libraft-headers=22.06.* - pyraft=22.06.* - cuda-python>=11.5,<12.0 - dask>=2022.03.0 - distributed>=2022.03.0 -- dask-cuda=22.06.* -- dask-cudf=22.06.* +- dask-cuda=22.08.* +- dask-cudf=22.08.* - nccl>=2.9.9 -- ucx-py=0.26.* +- ucx-py=0.27.* - ucx-proc=*=gpu - scipy - networkx>=2.5.1 diff --git a/conda/environments/cugraph_dev_cuda11.4.yml b/conda/environments/cugraph_dev_cuda11.4.yml index 99e42db4973..4451a3405d6 100644 --- a/conda/environments/cugraph_dev_cuda11.4.yml +++ b/conda/environments/cugraph_dev_cuda11.4.yml @@ -6,20 +6,20 @@ channels: - conda-forge dependencies: - cudatoolkit=11.4 -- libcugraphops=22.06.* -- cudf=22.06.* -- libcudf=22.06.* -- rmm=22.06.* -- librmm=22.06.* +- libcugraphops=22.08.* +- cudf=22.08.* +- libcudf=22.08.* +- rmm=22.08.* +- librmm=22.08.* - libraft-headers=22.06.* - pyraft=22.06.* - cuda-python>=11.5,<12.0 - dask>=2022.03.0 - distributed>=2022.03.0 -- dask-cuda=22.06.* -- dask-cudf=22.06.* +- dask-cuda=22.08.* +- dask-cudf=22.08.* - nccl>=2.9.9 -- ucx-py=0.26.* +- ucx-py=0.27.* - ucx-proc=*=gpu - scipy - networkx>=2.5.1 diff --git a/conda/environments/cugraph_dev_cuda11.5.yml b/conda/environments/cugraph_dev_cuda11.5.yml index dc80bdac95e..b9b743f2c72 100644 --- a/conda/environments/cugraph_dev_cuda11.5.yml +++ b/conda/environments/cugraph_dev_cuda11.5.yml @@ -6,20 +6,20 @@ channels: - conda-forge dependencies: - cudatoolkit=11.5 -- libcugraphops=22.06.* -- cudf=22.06.* -- libcudf=22.06.* -- rmm=22.06.* -- librmm=22.06.* +- libcugraphops=22.08.* +- cudf=22.08.* +- libcudf=22.08.* +- rmm=22.08.* +- librmm=22.08.* - libraft-headers=22.06.* - pyraft=22.06.* - cuda-python>=11.5,<12.0 - dask>=2022.03.0 - distributed>=2022.03.0 -- dask-cuda=22.06.* -- dask-cudf=22.06.* +- dask-cuda=22.08.* +- dask-cudf=22.08.* - nccl>=2.9.9 -- ucx-py=0.26.* +- ucx-py=0.27.* - ucx-proc=*=gpu - scipy - networkx>=2.5.1 diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index 427188b4c56..658462fde81 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -15,7 +15,7 @@ #============================================================================= cmake_minimum_required(VERSION 3.20.1 FATAL_ERROR) -file(DOWNLOAD https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-22.06/RAPIDS.cmake +file(DOWNLOAD https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-22.08/RAPIDS.cmake ${CMAKE_BINARY_DIR}/RAPIDS.cmake) include(${CMAKE_BINARY_DIR}/RAPIDS.cmake) @@ -27,7 +27,7 @@ include(rapids-find) rapids_cuda_init_architectures(CUGRAPH) -project(CUGRAPH VERSION 22.06.00 LANGUAGES C CXX CUDA) +project(CUGRAPH VERSION 22.08.00 LANGUAGES C CXX CUDA) if(CMAKE_CUDA_COMPILER_ID STREQUAL "NVIDIA" AND CMAKE_CUDA_COMPILER_VERSION VERSION_LESS 11.0) diff --git a/cpp/doxygen/Doxyfile b/cpp/doxygen/Doxyfile index 05fb507b5dd..f0840cfe840 100644 --- a/cpp/doxygen/Doxyfile +++ b/cpp/doxygen/Doxyfile @@ -2075,7 +2075,7 @@ SKIP_FUNCTION_MACROS = YES # the path). If a tag file is not located in the directory in which doxygen is # run, you must also specify the path to the tagfile here. -TAGFILES = rmm.tag=https://docs.rapids.ai/api/librmm/22.06 +TAGFILES = rmm.tag=https://docs.rapids.ai/api/librmm/22.08 # When a file name is specified after GENERATE_TAGFILE, doxygen will create a # tag file that is based on the input files it reads. See section "Linking to diff --git a/cpp/libcugraph_etl/CMakeLists.txt b/cpp/libcugraph_etl/CMakeLists.txt index 69ac59c082a..7a7c8437363 100644 --- a/cpp/libcugraph_etl/CMakeLists.txt +++ b/cpp/libcugraph_etl/CMakeLists.txt @@ -15,7 +15,7 @@ #============================================================================= cmake_minimum_required(VERSION 3.20.1 FATAL_ERROR) -file(DOWNLOAD https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-22.06/RAPIDS.cmake +file(DOWNLOAD https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-22.08/RAPIDS.cmake ${CMAKE_BINARY_DIR}/RAPIDS.cmake) include(${CMAKE_BINARY_DIR}/RAPIDS.cmake) @@ -27,7 +27,7 @@ include(rapids-find) rapids_cuda_init_architectures(CUGRAPH_ETL) -project(CUGRAPH_ETL VERSION 22.06.00 LANGUAGES C CXX CUDA) +project(CUGRAPH_ETL VERSION 22.08.00 LANGUAGES C CXX CUDA) if(CMAKE_CUDA_COMPILER_ID STREQUAL "NVIDIA" AND CMAKE_CUDA_COMPILER_VERSION VERSION_LESS 11.0) diff --git a/docs/cugraph/source/conf.py b/docs/cugraph/source/conf.py index f060f10f658..02c69f0a5d7 100644 --- a/docs/cugraph/source/conf.py +++ b/docs/cugraph/source/conf.py @@ -81,9 +81,9 @@ # built documents. # # The short X.Y version. -version = '22.06' +version = '22.08' # The full version, including alpha/beta/rc tags. -release = '22.06.00' +release = '22.08.00' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages.