Skip to content

Commit 3912dda

Browse files
committed
Add release notes for v1.0.1
Signed-off-by: Jay Gu <jagu@nvidia.com>
1 parent f3768bf commit 3912dda

File tree

10 files changed

+29
-42
lines changed

10 files changed

+29
-42
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!--- SPDX-FileCopyrightText: Copyright (c) <2025> NVIDIA CORPORATION & AFFILIATES. All rights reserved. -->
2+
<!--- SPDX-License-Identifier: Apache-2.0 -->
3+
4+
Release Notes
5+
=============
6+
7+
1.0.1 (2025-12-18)
8+
------------------
9+
### Bug Fixes
10+
- Fix a bug in hash function that resulted in potential performance regression
11+
for kernels with many specializations.
12+
- Fix a bug where an if statement within a loop can trigger an internal compiler error.
13+
- Fix SliceType `__eq__` comparison logic.
14+
15+
### Enhancements
16+
- Improve error message for `ct.cat()`.
17+
- Support `is not None` comparison.
18+
19+
20+
1.0.0 (2025-12-02)
21+
------------------
22+
Initial release.

changelog.d/cat-errormsg.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

changelog.d/experimental-autotuner.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

changelog.d/fix-hash.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

changelog.d/fix-if-in-loop.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

changelog.d/fix-vec-add.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

changelog.d/slice-type-eq.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

docs/source/conf.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# SPDX-License-Identifier: Apache-2.0
44

55
import os
6+
import shutil
67
import cuda.tile
78
import cuda.tile._datatype
89

@@ -63,6 +64,11 @@
6364
generated_includes_dir = os.path.join(os.path.dirname(__file__), 'generated', 'includes')
6465
os.makedirs(generated_includes_dir, exist_ok=True)
6566

67+
# Copy release notes from root
68+
release_notes_src = os.path.join(os.path.dirname(__file__), '..', '..', "CHANGELOG.md")
69+
release_notes_dst = os.path.join(os.path.dirname(__file__), 'generated', "release_notes.md")
70+
shutil.copy(release_notes_src, release_notes_dst)
71+
6672
# List of RST include generation functions to run
6773
rst_generated_includes = [
6874
"dtype_promotion_table",

docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Proceed to the :ref:`quickstart` page for installation instructions and a comple
4545
:maxdepth: 2
4646
:hidden:
4747

48-
release_notes
48+
generated/release_notes
4949
quickstart
5050
execution
5151
data

docs/source/release_notes.rst

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)