Skip to content

Commit 147a6f1

Browse files
authored
Release 0.36.0 (#536)
1 parent 6474d52 commit 147a6f1

File tree

6 files changed

+13
-6
lines changed

6 files changed

+13
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ If you use SlangPy in a research project leading to a publication, please cite t
8282
title = {SlangPy},
8383
author = {Simon Kallweit and Chris Cummings and Benedikt Bitterli and Sai Bangaru and Yong He},
8484
note = {https://github.com/shader-slang/slangpy},
85-
version = {0.35.0},
85+
version = {0.36.0},
8686
year = 2025
8787
}
8888
```

docs/changelog.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ Changelog
77

88
SlangPy uses a `semantic versioning <http://semver.org>`__ policy for its API.
99

10+
Version 0.36.0 (September 30, 2025)
11+
-------
12+
13+
- Update to Slang version 2025.18 with latest shader compilation improvements and bug fixes.
14+
- Update slang-rhi submodule to latest version with improved dependency handling.
15+
(PR `#533 <https://github.com/shader-slang/slangpy/pull/533>`__)
16+
1017
Version 0.35.0 (September 18, 2025)
1118
-------
1219

docs/generated/api.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@ Constants
678678

679679
.. py:data:: slangpy.SGL_VERSION_MINOR
680680
:type: int
681-
:value: 35
681+
:value: 36
682682

683683

684684

@@ -694,7 +694,7 @@ Constants
694694

695695
.. py:data:: slangpy.SGL_VERSION
696696
:type: str
697-
:value: "0.35.0"
697+
:value: "0.36.0"
698698

699699

700700

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ If you use SlangPy in a research project leading to a publication, please cite t
6969
title = {SlangPy},
7070
author = {Simon Kallweit and Chris Cummings and Benedikt Bitterli and Sai Bangaru and Yong He},
7171
note = {https://github.com/shader-slang/slangpy},
72-
version = {0.35.0},
72+
version = {0.36.0},
7373
year = 2025
7474
}
7575

src/sgl/sgl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#include "sgl/core/macros.h"
66

77
#define SGL_VERSION_MAJOR 0
8-
#define SGL_VERSION_MINOR 35
8+
#define SGL_VERSION_MINOR 36
99
#define SGL_VERSION_PATCH 0
1010

1111
#define SGL_VERSION \

vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sgl",
3-
"version-string": "0.35.0",
3+
"version-string": "0.36.0",
44
"dependencies": [
55
"libjpeg-turbo",
66
"libpng",

0 commit comments

Comments
 (0)