Skip to content

Commit c3b8345

Browse files
authoredJan 29, 2025
Update SGL->v0.10.0 (#171)
1 parent 433a18a commit c3b8345

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.9.0},
77+
version = {0.10.0},
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.10.0
14+
--------------------
15+
* SlangPy native .
16+
1317
v0.9.0
1418
--------------------
1519
* SlangPy native buffer layout improvements.

‎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.9.0"
579+
:value: "0.10.0"
580580

581581

582582

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

593593
.. py:data:: sgl.SGL_VERSION_MINOR
594594
:type: int
595-
:value: 9
595+
:value: 10
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.9.0},
31+
version = {0.10.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 9
8+
#define SGL_VERSION_MINOR 10
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.9.0",
3+
"version-string": "0.10.0",
44
"dependencies": [
55
"libjpeg-turbo",
66
"libpng",

0 commit comments

Comments
 (0)
Please sign in to comment.