Skip to content

Commit

Permalink
REL v23.06.02 release
Browse files Browse the repository at this point in the history
  • Loading branch information
raydouglass committed Jun 13, 2023
1 parent 66f7b23 commit db9d3c1
Show file tree
Hide file tree
Showing 17 changed files with 17 additions and 17 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 @@ 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)
Expand Down
2 changes: 1 addition & 1 deletion cpp/libcugraph_etl/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion docs/cugraph/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion python/cugraph-dgl/cugraph_dgl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
import cugraph_dgl.dataloading
import cugraph_dgl.nn

__version__ = "23.06.01"
__version__ = "23.06.02"
2 changes: 1 addition & 1 deletion python/cugraph-dgl/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
2 changes: 1 addition & 1 deletion python/cugraph-pyg/cugraph_pyg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion python/cugraph-pyg/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion python/cugraph-service/client/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,4 @@ def start_server_blocking(
server.serve() # blocks until Ctrl-C (kill -2)


__version__ = "23.06.01"
__version__ = "23.06.02"
2 changes: 1 addition & 1 deletion python/cugraph-service/server/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
2 changes: 1 addition & 1 deletion python/cugraph/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion python/cugraph/cugraph/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,4 +119,4 @@
from cugraph import gnn


__version__ = "23.06.01"
__version__ = "23.06.02"
2 changes: 1 addition & 1 deletion python/cugraph/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
2 changes: 1 addition & 1 deletion python/pylibcugraph/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion python/pylibcugraph/pylibcugraph/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,4 @@

from pylibcugraph.select_random_vertices import select_random_vertices

__version__ = "23.06.01"
__version__ = "23.06.02"
2 changes: 1 addition & 1 deletion python/pylibcugraph/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down

0 comments on commit db9d3c1

Please sign in to comment.