Skip to content

Commit db9d3c1

Browse files
committed
REL v23.06.02 release
1 parent 66f7b23 commit db9d3c1

17 files changed

Lines changed: 17 additions & 17 deletions

File tree

cpp/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ include(rapids-find)
2525

2626
rapids_cuda_init_architectures(CUGRAPH)
2727

28-
project(CUGRAPH VERSION 23.06.01 LANGUAGES C CXX CUDA)
28+
project(CUGRAPH VERSION 23.06.02 LANGUAGES C CXX CUDA)
2929

3030
if(CMAKE_CUDA_COMPILER_ID STREQUAL "NVIDIA" AND
3131
CMAKE_CUDA_COMPILER_VERSION VERSION_LESS 11.0)

cpp/libcugraph_etl/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ include(rapids-find)
2525

2626
rapids_cuda_init_architectures(CUGRAPH_ETL)
2727

28-
project(CUGRAPH_ETL VERSION 23.06.01 LANGUAGES C CXX CUDA)
28+
project(CUGRAPH_ETL VERSION 23.06.02 LANGUAGES C CXX CUDA)
2929

3030
if(CMAKE_CUDA_COMPILER_ID STREQUAL "NVIDIA" AND
3131
CMAKE_CUDA_COMPILER_VERSION VERSION_LESS 11.0)

docs/cugraph/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
# The short X.Y version.
7979
version = '23.06'
8080
# The full version, including alpha/beta/rc tags.
81-
release = '23.06.01'
81+
release = '23.06.02'
8282

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

python/cugraph-dgl/cugraph_dgl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
import cugraph_dgl.dataloading
2121
import cugraph_dgl.nn
2222

23-
__version__ = "23.06.01"
23+
__version__ = "23.06.02"

python/cugraph-dgl/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ build-backend = "setuptools.build_meta"
1010

1111
[project]
1212
name = "cugraph-dgl"
13-
version = "23.06.01"
13+
version = "23.06.02"
1414
description = "cugraph extensions for DGL"
1515
readme = { file = "README.md", content-type = "text/markdown" }
1616
authors = [

python/cugraph-pyg/cugraph_pyg/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
# See the License for the specific language governing permissions and
1212
# limitations under the License.
1313

14-
__version__ = "23.06.01"
14+
__version__ = "23.06.02"

python/cugraph-pyg/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ testpaths = ["cugraph_pyg/tests"]
1212

1313
[project]
1414
name = "cugraph_pyg"
15-
version = "23.06.01"
15+
version = "23.06.02"
1616
description = "cugraph_pyg - PyG support for cuGraph massive-scale, ultra-fast GPU graph analytics."
1717
authors = [
1818
{ name = "NVIDIA Corporation" },

python/cugraph-service/client/cugraph_service_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@
3535
from cugraph_service_client.client import CugraphServiceClient
3636
from cugraph_service_client.remote_graph import RemoteGraph
3737

38-
__version__ = "23.06.01"
38+
__version__ = "23.06.02"

python/cugraph-service/client/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ build-backend = "setuptools.build_meta"
1010

1111
[project]
1212
name = "cugraph-service-client"
13-
version = "23.06.01"
13+
version = "23.06.02"
1414
description = "cuGraph Service client"
1515
readme = { file = "README.md", content-type = "text/markdown" }
1616
authors = [

python/cugraph-service/server/cugraph_service_server/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,4 @@ def start_server_blocking(
6161
server.serve() # blocks until Ctrl-C (kill -2)
6262

6363

64-
__version__ = "23.06.01"
64+
__version__ = "23.06.02"

0 commit comments

Comments
 (0)