Skip to content

Commit c911863

Browse files
mdboomleofang
andauthored
[no-ci] Prepare 13.0.3 and 12.9.4 release (#1135)
* Prepare 13.0.3 and 12.9.4 release * Deal with known issues correctly * Update cuda_bindings/docs/source/release/12.9.4-notes.rst Co-authored-by: Leo Fang <leo80042@gmail.com> * Remove out-of-date comment * Add release notes to TOC * Update versions.json files * Add cuFile release note --------- Co-authored-by: Leo Fang <leo80042@gmail.com>
1 parent 002a069 commit c911863

File tree

14 files changed

+177
-1
lines changed

14 files changed

+177
-1
lines changed

cuda_bindings/docs/nv-versions.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
"version": "latest",
44
"url": "https://nvidia.github.io/cuda-python/cuda-bindings/latest/"
55
},
6+
{
7+
"version": "13.0.3",
8+
"url": "https://nvidia.github.io/cuda-python/cuda-bindings/13.0.3/"
9+
},
610
{
711
"version": "13.0.2",
812
"url": "https://nvidia.github.io/cuda-python/cuda-bindings/13.0.2/"

cuda_bindings/docs/source/release.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ Release Notes
77
.. toctree::
88
:maxdepth: 3
99

10+
13.0.3 <release/13.0.3-notes.rst>
1011
13.0.2 <release/13.0.2-notes.rst>
1112
13.0.1 <release/13.0.1-notes.rst>
1213
13.0.0 <release/13.0.0-notes.rst>
14+
12.9.4 <release/12.9.4-notes.rst>
1315
12.9.3 <release/12.9.3-notes.rst>
1416
12.9.2 <release/12.9.2-notes.rst>
1517
12.9.1 <release/12.9.1-notes.rst>

cuda_bindings/docs/source/release/12.9.3-notes.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,4 @@ Known issues
2626
------------
2727

2828
* Updating from older versions (v12.6.2.post1 and below) via ``pip install -U cuda-python`` might not work. Please do a clean re-installation by uninstalling ``pip uninstall -y cuda-python`` followed by installing ``pip install cuda-python``.
29+
* The graphics APIs in ``cuda.bindings.runtime`` are inadvertently disabled in 12.9.3. Users needing these APIs should update to 12.9.4.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
.. SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+
.. SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
3+
4+
.. module:: cuda.bindings
5+
6+
``cuda-bindings`` 12.9.4 Release notes
7+
======================================
8+
9+
10+
11+
Highlights
12+
----------
13+
14+
15+
Bug fixes
16+
---------
17+
18+
* The graphics APIs in ``cuda.bindings.runtime`` were inadvertently disabled in 12.9.3. This has been fixed.
19+
20+
Known issues
21+
------------
22+
23+
* Updating from older versions (v12.6.2.post1 and below) via ``pip install -U cuda-python`` might not work. Please do a clean re-installation by uninstalling ``pip uninstall -y cuda-python`` followed by installing ``pip install cuda-python``.
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
.. SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+
.. SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
3+
4+
.. module:: cuda.bindings
5+
6+
``cuda-bindings`` 12.9.Y Release notes
7+
======================================
8+
9+
10+
11+
Highlights
12+
----------
13+
14+
15+
Bug fixes
16+
---------
17+
18+
19+
20+
Known issues
21+
------------
22+
23+
* Updating from older versions (v12.6.2.post1 and below) via ``pip install -U cuda-python`` might not work. Please do a clean re-installation by uninstalling ``pip uninstall -y cuda-python`` followed by installing ``pip install cuda-python``.
24+
* The graphics APIs in ``cuda.bindings.runtime`` are inadvertently disabled in 12.9.3. Users needing these APIs should update to 12.9.4.

cuda_bindings/docs/source/release/13.0.2-notes.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,4 @@ Known issues
3434
------------
3535

3636
* Updating from older versions (v12.6.2.post1 and below) via ``pip install -U cuda-python`` might not work. Please do a clean re-installation by uninstalling ``pip uninstall -y cuda-python`` followed by installing ``pip install cuda-python``.
37+
* The graphics APIs in ``cuda.bindings.runtime`` are inadvertently disabled in 13.0.2. Users needing these APIs should update to 13.0.3.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
.. SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+
.. SPDX-License-Identifier: LicenseRef-NVIDIA-SOFTWARE-LICENSE
3+
4+
.. module:: cuda.bindings
5+
6+
``cuda-bindings`` 13.0.3 Release notes
7+
======================================
8+
9+
10+
11+
Highlights
12+
----------
13+
14+
* Updated the ``cuda.bindings.runtime`` module to statically link against the CUDA Runtime library from CUDA Toolkit 13.0.2.
15+
* The cuFile bindings have been updated to include new bindings available in CTK 13.0.
16+
17+
Bug fixes
18+
---------
19+
20+
* The graphics APIs in ``cuda.bindings.runtime`` were inadvertently disabled in 13.0.2. This has been fixed.
21+
22+
Known issues
23+
------------
24+
25+
* Updating from older versions (v12.6.2.post1 and below) via ``pip install -U cuda-python`` might not work. Please do a clean re-installation by uninstalling ``pip uninstall -y cuda-python`` followed by installing ``pip install cuda-python``.

cuda_bindings/docs/source/release/13.X.Y-notes.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
Highlights
1212
----------
1313

14-
* Updated the ``cuda.bindings.runtime`` module to statically link against the CUDA Runtime library from CUDA Toolkit 13.0.2.
1514

1615
Bug fixes
1716
---------
@@ -20,3 +19,6 @@ Bug fixes
2019

2120
Known issues
2221
------------
22+
23+
* Updating from older versions (v12.6.2.post1 and below) via ``pip install -U cuda-python`` might not work. Please do a clean re-installation by uninstalling ``pip uninstall -y cuda-python`` followed by installing ``pip install cuda-python``.
24+
* The graphics APIs in ``cuda.bindings.runtime`` are inadvertently disabled in 13.0.2. Users needing these APIs should update to 13.0.3.

cuda_python/docs/nv-versions.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
"version": "latest",
44
"url": "https://nvidia.github.io/cuda-python/latest/"
55
},
6+
{
7+
"version": "13.0.3",
8+
"url": "https://nvidia.github.io/cuda-python/13.0.3/"
9+
},
10+
{
11+
"version": "13.0.2",
12+
"url": "https://nvidia.github.io/cuda-python/13.0.2/"
13+
},
614
{
715
"version": "13.0.1",
816
"url": "https://nvidia.github.io/cuda-python/13.0.1/"

cuda_python/docs/source/release.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,12 @@ Release Notes
77
.. toctree::
88
:maxdepth: 3
99

10+
13.0.3 <release/13.0.3-notes.rst>
11+
13.0.2 <release/13.0.2-notes.rst>
1012
13.0.1 <release/13.0.1-notes.rst>
1113
13.0.0 <release/13.0.0-notes.rst>
14+
12.9.4 <release/12.9.4-notes.rst>
15+
12.9.3 <release/12.9.3-notes.rst>
1216
12.9.2 <release/12.9.2-notes.rst>
1317
12.9.1 <release/12.9.1-notes.rst>
1418
12.9.0 <release/12.9.0-notes.rst>

0 commit comments

Comments
 (0)