Skip to content

Commit 7e070fc

Browse files
committed
REL v23.04.01 release
1 parent d023acc commit 7e070fc

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

cpp/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ rapids_cuda_init_architectures(CUDF)
2525

2626
project(
2727
CUDF
28-
VERSION 23.04.00
28+
VERSION 23.04.01
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

+1-1
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 = 23.04.00
41+
PROJECT_NUMBER = 23.04.01
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

cpp/libcudf_kafka/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ include(rapids-find)
2222

2323
project(
2424
CUDA_KAFKA
25-
VERSION 23.04.00
25+
VERSION 23.04.01
2626
LANGUAGES CXX
2727
)
2828

docs/cudf/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
# The short X.Y version.
8484
version = '23.04'
8585
# The full version, including alpha/beta/rc tags.
86-
release = '23.04.00'
86+
release = '23.04.01'
8787

8888
# The language for content autogenerated by Sphinx. Refer to documentation
8989
# for a list of supported languages.

java/src/main/native/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ rapids_cuda_init_architectures(CUDF_JNI)
2828

2929
project(
3030
CUDF_JNI
31-
VERSION 23.04.00
31+
VERSION 23.04.01
3232
LANGUAGES C CXX CUDA
3333
)
3434

python/cudf/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
cmake_minimum_required(VERSION 3.23.1 FATAL_ERROR)
1616

17-
set(cudf_version 23.04.00)
17+
set(cudf_version 23.04.01)
1818

1919
include(../../fetch_rapids.cmake)
2020
include(rapids-cuda)

python/cudf/cudf/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
rmm.register_reinitialize_hook(clear_cache)
114114

115115

116-
__version__ = "23.04.00"
116+
__version__ = "23.04.01"
117117

118118
__all__ = [
119119
"BaseIndex",

python/cudf/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ requires = [
1717

1818
[project]
1919
name = "cudf"
20-
version = "23.04.00"
20+
version = "23.04.01"
2121
description = "cuDF - GPU Dataframe"
2222
readme = { file = "README.md", content-type = "text/markdown" }
2323
authors = [

python/cudf_kafka/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ requires = [
1212

1313
[project]
1414
name = "cudf_kafka"
15-
version = "23.04.00"
15+
version = "23.04.01"
1616
description = "cuDF Kafka Datasource"
1717
readme = { file = "README.md", content-type = "text/markdown" }
1818
authors = [

python/custreamz/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ requires = [
99

1010
[project]
1111
name = "custreamz"
12-
version = "23.04.00"
12+
version = "23.04.01"
1313
description = "cuStreamz - GPU Accelerated Streaming"
1414
readme = { file = "README.md", content-type = "text/markdown" }
1515
authors = [

python/dask_cudf/dask_cudf/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
except ImportError:
1515
pass
1616

17-
__version__ = "23.04.00"
17+
__version__ = "23.04.01"
1818

1919
__all__ = [
2020
"DataFrame",

python/dask_cudf/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ requires = [
99

1010
[project]
1111
name = "dask_cudf"
12-
version = "23.04.00"
12+
version = "23.04.01"
1313
description = "Utilities for Dask and cuDF interactions"
1414
readme = { file = "README.md", content-type = "text/markdown" }
1515
authors = [

0 commit comments

Comments
 (0)