diff --git a/CHANGELOG.md b/CHANGELOG.md index 4602e1f3c..b36e1c4bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# RMM 22.12.00 (Date TBD) + +Please see https://github.com/rapidsai/rmm/releases/tag/v22.12.00a for the latest changes to this development branch. + # RMM 22.10.00 (Date TBD) Please see https://github.com/rapidsai/rmm/releases/tag/v22.10.00a for the latest changes to this development branch. diff --git a/CMakeLists.txt b/CMakeLists.txt index d5de4f6c7..f09c788e3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,7 @@ cmake_minimum_required(VERSION 3.20.1 FATAL_ERROR) if(NOT EXISTS ${CMAKE_CURRENT_BINARY_DIR}/RMM_RAPIDS.cmake) - file(DOWNLOAD https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-22.10/RAPIDS.cmake + file(DOWNLOAD https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-22.12/RAPIDS.cmake ${CMAKE_CURRENT_BINARY_DIR}/RMM_RAPIDS.cmake) endif() include(${CMAKE_CURRENT_BINARY_DIR}/RMM_RAPIDS.cmake) @@ -27,7 +27,7 @@ include(rapids-find) project( RMM - VERSION 22.10.00 + VERSION 22.12.00 LANGUAGES CXX) # Write the version header diff --git a/doxygen/Doxyfile b/doxygen/Doxyfile index 6d8df26f4..5e76c59f5 100644 --- a/doxygen/Doxyfile +++ b/doxygen/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = "RMM" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 22.10 +PROJECT_NUMBER = 22.12 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/python/CMakeLists.txt b/python/CMakeLists.txt index 40bcc0955..a8c1a36f0 100644 --- a/python/CMakeLists.txt +++ b/python/CMakeLists.txt @@ -14,9 +14,9 @@ cmake_minimum_required(VERSION 3.20.1 FATAL_ERROR) -set(rmm_version 22.10.00) +set(rmm_version 22.12.00) -file(DOWNLOAD https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-22.10/RAPIDS.cmake +file(DOWNLOAD https://raw.githubusercontent.com/rapidsai/rapids-cmake/branch-22.12/RAPIDS.cmake ${CMAKE_BINARY_DIR}/RAPIDS.cmake) include(${CMAKE_BINARY_DIR}/RAPIDS.cmake) diff --git a/python/docs/conf.py b/python/docs/conf.py index 3db21a2e0..6e8182894 100644 --- a/python/docs/conf.py +++ b/python/docs/conf.py @@ -23,9 +23,9 @@ # built documents. # # The short X.Y version. -version = "22.10" +version = "22.12" # The full version, including alpha/beta/rc tags. -release = "22.10.00" +release = "22.12.00" # -- General configuration ---------------------------------------------------