Skip to content

Commit dad0124

Browse files
authored
Update SGL->v0.13.0 (#200)
1 parent aa15de1 commit dad0124

File tree

6 files changed

+13
-8
lines changed

6 files changed

+13
-8
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.4},
77+
version = {0.13.0},
7878
year = 2024
7979
}
8080
```

docs/changelog.rst

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

13+
v0.13.0
14+
--------------------
15+
* Expose additional SlangPy functions for inspecting textures and signatures.
16+
* BufferCursor supports option to not load data from GPU if user knows it is garbage.
17+
1318
v0.12.4
1419
--------------------
1520
* SlangPy support for auto-shaped types

docs/generated/api.rst

+3-3
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.4"
579+
:value: "0.13.0"
580580

581581

582582

@@ -592,15 +592,15 @@ Constants
592592

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

597597

598598

599599
----
600600

601601
.. py:data:: sgl.SGL_VERSION_PATCH
602602
:type: int
603-
:value: 4
603+
:value: 0
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.4},
31+
version = {0.13.0},
3232
year = 2024
3333
}
3434

src/sgl/sgl.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
#include "sgl/core/macros.h"
66

77
#define SGL_VERSION_MAJOR 0
8-
#define SGL_VERSION_MINOR 12
9-
#define SGL_VERSION_PATCH 4
8+
#define SGL_VERSION_MINOR 13
9+
#define SGL_VERSION_PATCH 0
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.4",
3+
"version-string": "0.13.0",
44
"dependencies": [
55
"libjpeg-turbo",
66
"libpng",

0 commit comments

Comments
 (0)