From db9d3c129450eb838c590b4a4a2d627e65312aa1 Mon Sep 17 00:00:00 2001 From: Ray Douglass Date: Tue, 13 Jun 2023 09:43:36 -0400 Subject: [PATCH] REL v23.06.02 release --- cpp/CMakeLists.txt | 2 +- cpp/libcugraph_etl/CMakeLists.txt | 2 +- docs/cugraph/source/conf.py | 2 +- python/cugraph-dgl/cugraph_dgl/__init__.py | 2 +- python/cugraph-dgl/pyproject.toml | 2 +- python/cugraph-pyg/cugraph_pyg/__init__.py | 2 +- python/cugraph-pyg/pyproject.toml | 2 +- .../cugraph-service/client/cugraph_service_client/__init__.py | 2 +- python/cugraph-service/client/pyproject.toml | 2 +- .../cugraph-service/server/cugraph_service_server/__init__.py | 2 +- python/cugraph-service/server/pyproject.toml | 2 +- python/cugraph/CMakeLists.txt | 2 +- python/cugraph/cugraph/__init__.py | 2 +- python/cugraph/pyproject.toml | 2 +- python/pylibcugraph/CMakeLists.txt | 2 +- python/pylibcugraph/pylibcugraph/__init__.py | 2 +- python/pylibcugraph/pyproject.toml | 2 +- 17 files changed, 17 insertions(+), 17 deletions(-) diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index 36df8d776d4..9220759fe31 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -25,7 +25,7 @@ include(rapids-find) rapids_cuda_init_architectures(CUGRAPH) -project(CUGRAPH VERSION 23.06.01 LANGUAGES C CXX CUDA) +project(CUGRAPH VERSION 23.06.02 LANGUAGES C CXX CUDA) if(CMAKE_CUDA_COMPILER_ID STREQUAL "NVIDIA" AND CMAKE_CUDA_COMPILER_VERSION VERSION_LESS 11.0) diff --git a/cpp/libcugraph_etl/CMakeLists.txt b/cpp/libcugraph_etl/CMakeLists.txt index 94de815f2c2..81292c361b9 100644 --- a/cpp/libcugraph_etl/CMakeLists.txt +++ b/cpp/libcugraph_etl/CMakeLists.txt @@ -25,7 +25,7 @@ include(rapids-find) rapids_cuda_init_architectures(CUGRAPH_ETL) -project(CUGRAPH_ETL VERSION 23.06.01 LANGUAGES C CXX CUDA) +project(CUGRAPH_ETL VERSION 23.06.02 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 96d813c6ed0..5b7ba8d1b51 100644 --- a/docs/cugraph/source/conf.py +++ b/docs/cugraph/source/conf.py @@ -78,7 +78,7 @@ # The short X.Y version. version = '23.06' # The full version, including alpha/beta/rc tags. -release = '23.06.01' +release = '23.06.02' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/python/cugraph-dgl/cugraph_dgl/__init__.py b/python/cugraph-dgl/cugraph_dgl/__init__.py index 2883d25d664..f14f28d9c1e 100644 --- a/python/cugraph-dgl/cugraph_dgl/__init__.py +++ b/python/cugraph-dgl/cugraph_dgl/__init__.py @@ -20,4 +20,4 @@ import cugraph_dgl.dataloading import cugraph_dgl.nn -__version__ = "23.06.01" +__version__ = "23.06.02" diff --git a/python/cugraph-dgl/pyproject.toml b/python/cugraph-dgl/pyproject.toml index 94fc9a00cff..f5c9ac85c71 100644 --- a/python/cugraph-dgl/pyproject.toml +++ b/python/cugraph-dgl/pyproject.toml @@ -10,7 +10,7 @@ build-backend = "setuptools.build_meta" [project] name = "cugraph-dgl" -version = "23.06.01" +version = "23.06.02" description = "cugraph extensions for DGL" readme = { file = "README.md", content-type = "text/markdown" } authors = [ diff --git a/python/cugraph-pyg/cugraph_pyg/__init__.py b/python/cugraph-pyg/cugraph_pyg/__init__.py index b00f0f9dc3e..5efd8287a1a 100644 --- a/python/cugraph-pyg/cugraph_pyg/__init__.py +++ b/python/cugraph-pyg/cugraph_pyg/__init__.py @@ -11,4 +11,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "23.06.01" +__version__ = "23.06.02" diff --git a/python/cugraph-pyg/pyproject.toml b/python/cugraph-pyg/pyproject.toml index b2a49d5bd4a..92f47e398c2 100644 --- a/python/cugraph-pyg/pyproject.toml +++ b/python/cugraph-pyg/pyproject.toml @@ -12,7 +12,7 @@ testpaths = ["cugraph_pyg/tests"] [project] name = "cugraph_pyg" -version = "23.06.01" +version = "23.06.02" description = "cugraph_pyg - PyG support for cuGraph massive-scale, ultra-fast GPU graph analytics." authors = [ { name = "NVIDIA Corporation" }, diff --git a/python/cugraph-service/client/cugraph_service_client/__init__.py b/python/cugraph-service/client/cugraph_service_client/__init__.py index ddb1af0b86e..521cf0dcde3 100644 --- a/python/cugraph-service/client/cugraph_service_client/__init__.py +++ b/python/cugraph-service/client/cugraph_service_client/__init__.py @@ -35,4 +35,4 @@ from cugraph_service_client.client import CugraphServiceClient from cugraph_service_client.remote_graph import RemoteGraph -__version__ = "23.06.01" +__version__ = "23.06.02" diff --git a/python/cugraph-service/client/pyproject.toml b/python/cugraph-service/client/pyproject.toml index 5d3250c4d98..9c8c737ba2d 100644 --- a/python/cugraph-service/client/pyproject.toml +++ b/python/cugraph-service/client/pyproject.toml @@ -10,7 +10,7 @@ build-backend = "setuptools.build_meta" [project] name = "cugraph-service-client" -version = "23.06.01" +version = "23.06.02" description = "cuGraph Service client" readme = { file = "README.md", content-type = "text/markdown" } authors = [ diff --git a/python/cugraph-service/server/cugraph_service_server/__init__.py b/python/cugraph-service/server/cugraph_service_server/__init__.py index 3bf5d670a99..878dec1c1db 100644 --- a/python/cugraph-service/server/cugraph_service_server/__init__.py +++ b/python/cugraph-service/server/cugraph_service_server/__init__.py @@ -61,4 +61,4 @@ def start_server_blocking( server.serve() # blocks until Ctrl-C (kill -2) -__version__ = "23.06.01" +__version__ = "23.06.02" diff --git a/python/cugraph-service/server/pyproject.toml b/python/cugraph-service/server/pyproject.toml index 850b461cae9..df7648d155c 100644 --- a/python/cugraph-service/server/pyproject.toml +++ b/python/cugraph-service/server/pyproject.toml @@ -10,7 +10,7 @@ build-backend = "setuptools.build_meta" [project] name = "cugraph-service-server" -version = "23.06.01" +version = "23.06.02" description = "cuGraph Service server" readme = { file = "README.md", content-type = "text/markdown" } authors = [ diff --git a/python/cugraph/CMakeLists.txt b/python/cugraph/CMakeLists.txt index d366c33b1cd..44c8e45c915 100644 --- a/python/cugraph/CMakeLists.txt +++ b/python/cugraph/CMakeLists.txt @@ -14,7 +14,7 @@ cmake_minimum_required(VERSION 3.23.1 FATAL_ERROR) -set(cugraph_version 23.06.01) +set(cugraph_version 23.06.02) include(../../fetch_rapids.cmake) diff --git a/python/cugraph/cugraph/__init__.py b/python/cugraph/cugraph/__init__.py index d77f876f5d7..5a47dd52905 100644 --- a/python/cugraph/cugraph/__init__.py +++ b/python/cugraph/cugraph/__init__.py @@ -119,4 +119,4 @@ from cugraph import gnn -__version__ = "23.06.01" +__version__ = "23.06.02" diff --git a/python/cugraph/pyproject.toml b/python/cugraph/pyproject.toml index 0803f841b21..c726a1bc8ab 100644 --- a/python/cugraph/pyproject.toml +++ b/python/cugraph/pyproject.toml @@ -20,7 +20,7 @@ testpaths = ["cugraph/tests"] [project] name = "cugraph" -version = "23.06.01" +version = "23.06.02" description = "cuGraph - RAPIDS GPU Graph Analytics" readme = { file = "README.md", content-type = "text/markdown" } authors = [ diff --git a/python/pylibcugraph/CMakeLists.txt b/python/pylibcugraph/CMakeLists.txt index bcbb7e17644..771f0e13a7a 100644 --- a/python/pylibcugraph/CMakeLists.txt +++ b/python/pylibcugraph/CMakeLists.txt @@ -14,7 +14,7 @@ cmake_minimum_required(VERSION 3.23.1 FATAL_ERROR) -set(pylibcugraph_version 23.06.01) +set(pylibcugraph_version 23.06.02) include(../../fetch_rapids.cmake) diff --git a/python/pylibcugraph/pylibcugraph/__init__.py b/python/pylibcugraph/pylibcugraph/__init__.py index 38982745873..2a68bfae40f 100644 --- a/python/pylibcugraph/pylibcugraph/__init__.py +++ b/python/pylibcugraph/pylibcugraph/__init__.py @@ -81,4 +81,4 @@ from pylibcugraph.select_random_vertices import select_random_vertices -__version__ = "23.06.01" +__version__ = "23.06.02" diff --git a/python/pylibcugraph/pyproject.toml b/python/pylibcugraph/pyproject.toml index 5e8bd0dd7c8..e2c28da35dd 100644 --- a/python/pylibcugraph/pyproject.toml +++ b/python/pylibcugraph/pyproject.toml @@ -19,7 +19,7 @@ testpaths = ["pylibcugraph/tests"] [project] name = "pylibcugraph" -version = "23.06.01" +version = "23.06.02" description = "pylibcugraph - Python bindings for the libcugraph cuGraph C/C++/CUDA library" readme = { file = "README.md", content-type = "text/markdown" } authors = [