diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index 1dd3348a9c9..b21890bf138 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -28,7 +28,7 @@ include(rapids-find) rapids_cuda_init_architectures(CUDF) -project(CUDF VERSION 21.10.00 LANGUAGES C CXX CUDA) +project(CUDF VERSION 21.10.01 LANGUAGES C CXX CUDA) # Needed because GoogleBenchmark changes the state of FindThreads.cmake, # causing subsequent runs to have different values for the `Threads::Threads` target. diff --git a/cpp/doxygen/Doxyfile b/cpp/doxygen/Doxyfile index 72524996a69..ddde3fd8dff 100644 --- a/cpp/doxygen/Doxyfile +++ b/cpp/doxygen/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = "libcudf" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 21.10.00 +PROJECT_NUMBER = 21.10.01 # 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/cpp/libcudf_kafka/CMakeLists.txt b/cpp/libcudf_kafka/CMakeLists.txt index 020f5c76c10..c1c64553948 100644 --- a/cpp/libcudf_kafka/CMakeLists.txt +++ b/cpp/libcudf_kafka/CMakeLists.txt @@ -25,7 +25,7 @@ include(rapids-cuda) include(rapids-export) include(rapids-find) -project(CUDA_KAFKA VERSION 21.10.00 LANGUAGES CXX) +project(CUDA_KAFKA VERSION 21.10.01 LANGUAGES CXX) # Set a default build type if none was specified rapids_cmake_build_type(Release) diff --git a/docs/cudf/source/conf.py b/docs/cudf/source/conf.py index c5f1233d022..03f858ceb6e 100644 --- a/docs/cudf/source/conf.py +++ b/docs/cudf/source/conf.py @@ -82,7 +82,7 @@ # The short X.Y version. version = '21.10' # The full version, including alpha/beta/rc tags. -release = '21.10.00' +release = '21.10.01' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/java/src/main/native/CMakeLists.txt b/java/src/main/native/CMakeLists.txt index fc74ee2a3a9..4b87199aee6 100755 --- a/java/src/main/native/CMakeLists.txt +++ b/java/src/main/native/CMakeLists.txt @@ -29,7 +29,7 @@ if(DEFINED GPU_ARCHS) endif() rapids_cuda_init_architectures(CUDF_JNI) -project(CUDF_JNI VERSION 21.10.00 LANGUAGES C CXX CUDA) +project(CUDF_JNI VERSION 21.10.01 LANGUAGES C CXX CUDA) ################################################################################################### # - build options ---------------------------------------------------------------------------------