diff --git a/cuda_core/cuda/core/_version.py b/cuda_core/cuda/core/_version.py index 44667d4a0..0fefe49f4 100644 --- a/cuda_core/cuda/core/_version.py +++ b/cuda_core/cuda/core/_version.py @@ -2,4 +2,4 @@ # # SPDX-License-Identifier: Apache-2.0 -__version__ = "0.4.0" +__version__ = "0.4.1" diff --git a/cuda_core/docs/nv-versions.json b/cuda_core/docs/nv-versions.json index d9dd20e5c..b9754c06b 100644 --- a/cuda_core/docs/nv-versions.json +++ b/cuda_core/docs/nv-versions.json @@ -3,6 +3,10 @@ "version": "latest", "url": "https://nvidia.github.io/cuda-python/cuda-core/latest/" }, + { + "version": "0.4.1", + "url": "https://nvidia.github.io/cuda-python/cuda-core/0.4.1/" + }, { "version": "0.4.0", "url": "https://nvidia.github.io/cuda-python/cuda-core/0.4.0/" diff --git a/cuda_core/docs/source/release/0.4.1-notes.rst b/cuda_core/docs/source/release/0.4.1-notes.rst new file mode 100644 index 000000000..fe4baef32 --- /dev/null +++ b/cuda_core/docs/source/release/0.4.1-notes.rst @@ -0,0 +1,43 @@ +.. SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved. +.. SPDX-License-Identifier: Apache-2.0 + +.. currentmodule:: cuda.core.experimental + +``cuda.core`` 0.4.1 Release Notes +================================= + +Released on Oct 29, 2025 + + +Highlights +---------- + +None. + + +Breaking Changes +---------------- + +None. + + +New features +------------ + +None. + + +New examples +------------ + +None. + + +Fixes and enhancements +---------------------- + +- Fixed a segmentation fault when accessing :class:`~utils.StridedMemoryView`'s ``shape`` and ``strides`` members. +- Fixed :attr:`DeviceMemoryResourceOptions.max_size` not accepting values above ``INT_MAX``. +- Fixed rendering of the documentation for :class:`VirtualMemoryResourceOptions`. +- Fixed NumPy version requirement for the code sample ``thread_block_cluster.py``. +- Fixed VMM-related tests.