Skip to content

Commit

Permalink
Update SGL->0.7.0 (#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
ccummingsNV authored Jan 22, 2025
1 parent 2633727 commit da904ba
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ If you use sgl in a research project leading to a publication, please cite the p
title = {Slang Graphics Library},
author = {Simon Kallweit and Chris Cummings},
note = {https://github.com/shader-slang/sgl},
version = {0.6.2},
version = {0.7.0},
year = 2024
}
```
6 changes: 6 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ sgl uses a `semantic versioning <http://semver.org>`__ policy for its API.
Changelog
=========

v0.7.0
--------------------
* SlangPy native utilities updated
* Minor optimizations to shader cursor
* Fix issue creating buffers whilst command buffer is open.

v0.6.2
--------------------
* Slang update to 2025.2.2
Expand Down
6 changes: 3 additions & 3 deletions docs/generated/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ Constants

.. py:data:: sgl.SGL_VERSION
:type: str
:value: "0.6.2"
:value: "0.7.0"



Expand All @@ -592,15 +592,15 @@ Constants

.. py:data:: sgl.SGL_VERSION_MINOR
:type: int
:value: 6
:value: 7



----

.. py:data:: sgl.SGL_VERSION_PATCH
:type: int
:value: 2
:value: 0



Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ If you use ``sgl`` in a research project leading to a publication, please cite t
title = {Slang Graphics Library},
author = {Simon Kallweit and Chris Cummings},
note = {https://github.com/shader-slang/sgl},
version = {0.6.2},
version = {0.7.0},
year = 2024
}
Expand Down
4 changes: 2 additions & 2 deletions src/sgl/sgl.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
#include "sgl/core/macros.h"

#define SGL_VERSION_MAJOR 0
#define SGL_VERSION_MINOR 6
#define SGL_VERSION_PATCH 2
#define SGL_VERSION_MINOR 7
#define SGL_VERSION_PATCH 0

#define SGL_VERSION \
SGL_TO_STRING(SGL_VERSION_MAJOR) "." SGL_TO_STRING(SGL_VERSION_MINOR) "." SGL_TO_STRING(SGL_VERSION_PATCH)
Expand Down
2 changes: 1 addition & 1 deletion vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sgl",
"version-string": "0.6.2",
"version-string": "0.7.0",
"dependencies": [
"libjpeg-turbo",
"libpng",
Expand Down

0 comments on commit da904ba

Please sign in to comment.