Skip to content

Commit

Permalink
REL v23.10.02 release
Browse files Browse the repository at this point in the history
  • Loading branch information
raydouglass committed Nov 16, 2023
1 parent 1304f94 commit ece2b2c
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ rapids_cuda_init_architectures(CUDF)

project(
CUDF
VERSION 23.10.01
VERSION 23.10.02
LANGUAGES C CXX CUDA
)
if(CMAKE_CUDA_COMPILER_ID STREQUAL "NVIDIA" AND CMAKE_CUDA_COMPILER_VERSION VERSION_LESS 11.5)
Expand Down
2 changes: 1 addition & 1 deletion cpp/doxygen/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 = 23.10.01
PROJECT_NUMBER = 23.10.02

# 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
Expand Down
2 changes: 1 addition & 1 deletion cpp/libcudf_kafka/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ include(rapids-find)

project(
CUDA_KAFKA
VERSION 23.10.01
VERSION 23.10.02
LANGUAGES CXX
)

Expand Down
2 changes: 1 addition & 1 deletion docs/cudf/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
# The short X.Y version.
version = '23.10'
# The full version, including alpha/beta/rc tags.
release = '23.10.01'
release = '23.10.02'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/dask_cudf/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
copyright = "2018-2023, NVIDIA Corporation"
author = "NVIDIA Corporation"
version = '23.10'
release = '23.10.01'
release = '23.10.02'

language = "en"

Expand Down
2 changes: 1 addition & 1 deletion java/ci/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ scl enable devtoolset-11 "java/ci/build-in-docker.sh"

### The output

You can find the cuDF jar in java/target/ like cudf-23.10.1-SNAPSHOT-cuda11.jar.
You can find the cuDF jar in java/target/ like cudf-23.10.2-SNAPSHOT-cuda11.jar.
2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<groupId>ai.rapids</groupId>
<artifactId>cudf</artifactId>
<version>23.10.1-SNAPSHOT</version>
<version>23.10.2-SNAPSHOT</version>

<name>cudfjni</name>
<description>
Expand Down
2 changes: 1 addition & 1 deletion java/src/main/native/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ rapids_cuda_init_architectures(CUDF_JNI)

project(
CUDF_JNI
VERSION 23.10.01
VERSION 23.10.02
LANGUAGES C CXX CUDA
)

Expand Down
2 changes: 1 addition & 1 deletion python/cudf/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

cmake_minimum_required(VERSION 3.26.4 FATAL_ERROR)

set(cudf_version 23.10.01)
set(cudf_version 23.10.02)

include(../../fetch_rapids.cmake)
include(rapids-cuda)
Expand Down
2 changes: 1 addition & 1 deletion python/cudf/cudf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
rmm.register_reinitialize_hook(clear_cache)


__version__ = "23.10.01"
__version__ = "23.10.02"

__all__ = [
"BaseIndex",
Expand Down
2 changes: 1 addition & 1 deletion python/cudf/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ requires = [

[project]
name = "cudf"
version = "23.10.01"
version = "23.10.02"
description = "cuDF - GPU Dataframe"
readme = { file = "README.md", content-type = "text/markdown" }
authors = [
Expand Down
2 changes: 1 addition & 1 deletion python/cudf_kafka/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ requires = [

[project]
name = "cudf_kafka"
version = "23.10.01"
version = "23.10.02"
description = "cuDF Kafka Datasource"
readme = { file = "README.md", content-type = "text/markdown" }
authors = [
Expand Down
2 changes: 1 addition & 1 deletion python/custreamz/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ requires = [

[project]
name = "custreamz"
version = "23.10.01"
version = "23.10.02"
description = "cuStreamz - GPU Accelerated Streaming"
readme = { file = "README.md", content-type = "text/markdown" }
authors = [
Expand Down
2 changes: 1 addition & 1 deletion python/dask_cudf/dask_cudf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
except ImportError:
pass

__version__ = "23.10.01"
__version__ = "23.10.02"

__all__ = [
"DataFrame",
Expand Down
2 changes: 1 addition & 1 deletion python/dask_cudf/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ requires = [

[project]
name = "dask_cudf"
version = "23.10.01"
version = "23.10.02"
description = "Utilities for Dask and cuDF interactions"
readme = { file = "README.md", content-type = "text/markdown" }
authors = [
Expand Down

0 comments on commit ece2b2c

Please sign in to comment.