Skip to content

Commit f20ec99

Browse files
authored
Release notes (#682)
* Release notes * --amend * more correct * adapt to new ruff
1 parent 4fb7d7b commit f20ec99

File tree

3 files changed

+41
-2
lines changed

3 files changed

+41
-2
lines changed

CHANGELOG.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,45 @@ Possible sections in each release:
1717
* Security: in case of vulnerabilities.
1818

1919

20+
### [v0.20.1] - 14-03-2025
21+
22+
Other:
23+
* Add release notes.
24+
25+
26+
### [v0.20.0] - 14-03-2025
27+
28+
Added:
29+
30+
* Add Imgui based Stats component by @panxinmiao in https://github.com/pygfx/wgpu-py/pull/670 and https://github.com/pygfx/wgpu-py/pull/674
31+
* Can pass constants to compute helper by @kushalkolar in https://github.com/pygfx/wgpu-py/pull/676
32+
* Add simple matmul example by @kushalkolar in https://github.com/pygfx/wgpu-py/pull/677
33+
34+
Fixed:
35+
36+
* Fix imgui scroll event by @panxinmiao in https://github.com/pygfx/wgpu-py/pull/678
37+
38+
Changed:
39+
40+
* Improve error handling by @almarklein in https://github.com/pygfx/wgpu-py/pull/667
41+
* Bring sleep back to WgpuAwaitable. Slowly back off on the amount of time sleeping. by @fyellin in https://github.com/pygfx/wgpu-py/pull/655
42+
* Improve performance for 'bitmap' render method by @almarklein in https://github.com/pygfx/wgpu-py/pull/680
43+
44+
Other:
45+
46+
* Stop setting AA_EnableHighDpiScaling since Qt Says it is not needed by @hmaarrfk in https://github.com/pygfx/wgpu-py/pull/657
47+
* Remove unneeded pytest-anyio package by @hmaarrfk in https://github.com/pygfx/wgpu-py/pull/658
48+
* Actually run the tests instead of fully skipping them by @hmaarrfk in https://github.com/pygfx/wgpu-py/pull/659
49+
* Improve state of the art for screenshot testing by @hmaarrfk in https://github.com/pygfx/wgpu-py/pull/555
50+
* Use default lavapipe for screenshot by @Vipitis in https://github.com/pygfx/wgpu-py/pull/660
51+
* Fix one typo in _helpers.py by @hmaarrfk in https://github.com/pygfx/wgpu-py/pull/661
52+
* Fix typo in README.md by @patrini32 in https://github.com/pygfx/wgpu-py/pull/662
53+
* Improve docs regarding drives on Linux by @almarklein in https://github.com/pygfx/wgpu-py/pull/668
54+
* Add patches for conda compatibility by @hmaarrfk in https://github.com/pygfx/wgpu-py/pull/666
55+
* Allow disabling downloading lib when creating wheel by @almarklein in https://github.com/pygfx/wgpu-py/pull/669
56+
* examples/imgui_cmap_picker.py - update for imgui bundle 1.6.2 by @pthom in https://github.com/pygfx/wgpu-py/pull/671
57+
58+
2059
### [v0.19.3] - 10-12-2024
2160

2261
Fixed:

wgpu/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
# This is the reference version number, to be bumped before each release.
1212
# The build system detects this definition when building a distribution.
13-
__version__ = "0.20.0"
13+
__version__ = "0.20.1"
1414

1515
# Allow using nearly the same code in different projects
1616
project_name = "wgpu"

wgpu/backends/wgpu_native/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# The wgpu-native version that we target/expect
1414
__version__ = "22.1.0.5"
1515
__commit_sha__ = "fad19f5990d8eb9a6e942eb957344957193fe66d"
16-
version_info = tuple(map(int, __version__.split(".")))
16+
version_info = tuple(map(int, __version__.split("."))) # noqa: RUF048
1717
_check_expected_version(version_info) # produces a warning on mismatch
1818

1919
# Instantiate and register this backend

0 commit comments

Comments
 (0)