Skip to content

Commit cddffbc

Browse files
authored
v0.5.1 (#308)
1 parent 3a18068 commit cddffbc

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

CITATION.cff

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cff-version: 1.2.0
22
title: "MSCCL++: A GPU-driven communication stack for scalable AI applications"
3-
version: 0.5.0
3+
version: 0.5.1
44
message: >-
55
If you use this project in your research, please cite it as below.
66
authors:

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
set(MSCCLPP_MAJOR "0")
55
set(MSCCLPP_MINOR "5")
6-
set(MSCCLPP_PATCH "0")
6+
set(MSCCLPP_PATCH "1")
77

88
set(MSCCLPP_SOVERSION ${MSCCLPP_MAJOR})
99
set(MSCCLPP_VERSION "${MSCCLPP_MAJOR}.${MSCCLPP_MINOR}.${MSCCLPP_PATCH}")

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
project = "mscclpp"
1010
copyright = "2023, MSCCL++ Team"
1111
author = "MSCCL++ Team"
12-
release = "v0.5.0"
12+
release = "v0.5.1"
1313

1414
# -- General configuration ---------------------------------------------------
1515
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

include/mscclpp/core.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
#define MSCCLPP_MAJOR 0
88
#define MSCCLPP_MINOR 5
9-
#define MSCCLPP_PATCH 0
9+
#define MSCCLPP_PATCH 1
1010
#define MSCCLPP_VERSION (MSCCLPP_MAJOR * 10000 + MSCCLPP_MINOR * 100 + MSCCLPP_PATCH)
1111

1212
#include <array>

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "scikit_build_core.build"
77

88
[project]
99
name = "mscclpp"
10-
version = "0.5.0"
10+
version = "0.5.1"
1111

1212
[tool.scikit-build]
1313
cmake.minimum-version = "3.25.0"

0 commit comments

Comments
 (0)