Skip to content

Commit 0b4b0c0

Browse files
authored
Update SGL->v0.12.3 (#190)
1 parent 207cab0 commit 0b4b0c0

File tree

6 files changed

+10
-6
lines changed

6 files changed

+10
-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.12.2},
77+
version = {0.12.3},
7878
year = 2024
7979
}
8080
```

docs/changelog.rst

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

13+
v0.12.3
14+
--------------------
15+
* Improved dispatch error handling
16+
1317
v0.12.2
1418
--------------------
1519
* Fix SlangPy textures being transposed during load/store

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.12.2"
579+
:value: "0.12.3"
580580

581581

582582

@@ -600,7 +600,7 @@ Constants
600600

601601
.. py:data:: sgl.SGL_VERSION_PATCH
602602
:type: int
603-
:value: 2
603+
:value: 3
604604

605605

606606

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.12.2},
31+
version = {0.12.3},
3232
year = 2024
3333
}
3434

src/sgl/sgl.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
#define SGL_VERSION_MAJOR 0
88
#define SGL_VERSION_MINOR 12
9-
#define SGL_VERSION_PATCH 2
9+
#define SGL_VERSION_PATCH 3
1010

1111
#define SGL_VERSION \
1212
SGL_TO_STRING(SGL_VERSION_MAJOR) "." SGL_TO_STRING(SGL_VERSION_MINOR) "." SGL_TO_STRING(SGL_VERSION_PATCH)

vcpkg.json

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

0 commit comments

Comments
 (0)