Skip to content

Commit 20f2528

Browse files
authored
Update SGL->v0.12.0 (#182)
1 parent 7543b19 commit 20f2528

File tree

6 files changed

+11
-6
lines changed

6 files changed

+11
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ If you use sgl in a research project leading to a publication, please cite the p
7474
title = {Slang Graphics Library},
7575
author = {Simon Kallweit and Chris Cummings},
7676
note = {https://github.com/shader-slang/sgl},
77-
version = {0.11.0},
77+
version = {0.12.0},
7878
year = 2024
7979
}
8080
```

docs/changelog.rst

+5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,12 @@ sgl uses a `semantic versioning <http://semver.org>`__ policy for its API.
1010
Changelog
1111
=========
1212

13+
v0.12.0
14+
--------------------
15+
* CoopVec api moved to device.
16+
1317
v0.11.0
18+
--------------------
1419
* Slang 2025.3.3
1520
* CoopVec support
1621
* SlangPy native tensor types

docs/generated/api.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ Constants
576576

577577
.. py:data:: sgl.SGL_VERSION
578578
:type: str
579-
:value: "0.11.0"
579+
:value: "0.12.0"
580580

581581

582582

@@ -592,7 +592,7 @@ Constants
592592

593593
.. py:data:: sgl.SGL_VERSION_MINOR
594594
:type: int
595-
:value: 11
595+
:value: 12
596596

597597

598598

docs/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ If you use ``sgl`` in a research project leading to a publication, please cite t
2828
title = {Slang Graphics Library},
2929
author = {Simon Kallweit and Chris Cummings},
3030
note = {https://github.com/shader-slang/sgl},
31-
version = {0.11.0},
31+
version = {0.12.0},
3232
year = 2024
3333
}
3434

src/sgl/sgl.h

+1-1
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 11
8+
#define SGL_VERSION_MINOR 12
99
#define SGL_VERSION_PATCH 0
1010

1111
#define SGL_VERSION \

vcpkg.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sgl",
3-
"version-string": "0.11.0",
3+
"version-string": "0.12.0",
44
"dependencies": [
55
"libjpeg-turbo",
66
"libpng",

0 commit comments

Comments
 (0)