Skip to content

Commit 7aadc72

Browse files
authored
Bump version (#523)
1 parent 09e4ec6 commit 7aadc72

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

CHANGELOG.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,27 @@ Possible sections in each release:
1717
* Security: in case of vulnerabilities.
1818

1919

20+
### [v0.15.3] - 12-06-2024
21+
22+
Added:
23+
24+
* Implement `canvas.set_title()` by @almarklein in https://github.com/pygfx/wgpu-py/pull/508
25+
* Add experimental support for `get_mapped_range()` by @almarklein in https://github.com/pygfx/wgpu-py/pull/522
26+
27+
Changed:
28+
29+
* Allow `create_render_pipeline()` to use `AutoLayout` by @fyellin in https://github.com/pygfx/wgpu-py/pull/500
30+
* Support omitting the `topology` field in the `primitive` dict passed to `create_render_pipeline()` by @fyellin in https://github.com/pygfx/wgpu-py/pull/503
31+
* Support omitting last arguments in `set_bind_group()` by @panxinmiao in https://github.com/pygfx/wgpu-py/pull/511
32+
* Try to optimize proxy_func by @almarklein in https://github.com/pygfx/wgpu-py/pull/507
33+
34+
Fixed:
35+
36+
* Fix wx examples by @panxinmiao in https://github.com/pygfx/wgpu-py/pull/520
37+
* Support timestamp queryset for `begin_render_pass()` by @almarklein in https://github.com/pygfx/wgpu-py/pull/505
38+
* Implement `destroy()` the right way by @almarklein in https://github.com/pygfx/wgpu-py/pull/519
39+
40+
2041
### [v0.15.2] - 10-05-2024
2142

2243
Added:
@@ -62,7 +83,7 @@ Fixed:
6283
Changed:
6384

6485
* Updated to wgpu-native 0.19.3.1. Does not incur API changes.
65-
* Updated to latedt IDL. Does not incur API changes.
86+
* Updated to latest IDL. Does not incur API changes.
6687

6788
Fixed:
6889

wgpu/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from . import resources # noqa: F401,F403
1414

1515

16-
__version__ = "0.15.2"
16+
__version__ = "0.15.3"
1717
version_info = tuple(map(int, __version__.split(".")))
1818

1919

0 commit comments

Comments
 (0)