Skip to content

Commit 08b1dde

Browse files
committed
bump version and add release notes
1 parent 2aee819 commit 08b1dde

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,32 @@ Possible sections in each release:
1818
* Security: in case of vulnerabilities.
1919

2020

21+
### [v0.8.3] - 06-01-2023
22+
23+
Fixed:
24+
25+
* Prevent Qt warning about setting dpi awareness (#320)
26+
* Make canvases close when they get deleted (#319)
27+
* Fix qt canvas in ipython (#315)
28+
* Make offscreen canvas closable (#309)
29+
* Fix that the offscreen canvas had it size hardcoded, ignoring the given size (#317)
30+
* Fixed renaming of `queue` in docs (#308)
31+
* Fix using `.draw_frame` on qt canvas (#304)
32+
* Add missing dev dependencies (#295)
33+
34+
Added:
35+
36+
* A shadertoy utility, plus examples (#312)
37+
38+
Changed:
39+
40+
* Improve the error prompt when wgsl code is multi line error (#311, #316)
41+
* Tests: execute examples in the test process (#310)
42+
* Package only the release binary (not the debug build) (#299)
43+
* Codegen: uses in-memory file system during code generation (#303)
44+
* Improve readme (#290, #302, #314)
45+
46+
2147
### [v0.8.2] - 06-10-2022
2248

2349
Fixed:

wgpu/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from .base import * # noqa: F401,F403
99
from .gui import WgpuCanvasInterface # noqa: F401,F403
1010

11-
__version__ = "0.8.2"
11+
__version__ = "0.8.3"
1212
version_info = tuple(map(int, __version__.split(".")))
1313

1414

0 commit comments

Comments
 (0)