Skip to content

Commit

Permalink
Bump version (#466)
Browse files Browse the repository at this point in the history
  • Loading branch information
almarklein committed Feb 13, 2024
1 parent 51dd33b commit 2c39e7f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,28 @@ Possible sections in each release:
* Security: in case of vulnerabilities.


### [unreleased]
### [v0.14.0]

Added:

* The feature "float32-filterable" is now available natively.
* Add list of projects using wgpu-py to [README](README.md#projects-using-wgpu-py). ([#456](https://github.com/pygfx/wgpu-py/pull/456))

Changed:

* Updated to wgpu-native 0.19.1.1. ([#458](https://github.com/pygfx/wgpu-py/pull/458))
* `Canvas.get_context()` now raises an error if no backend is selected yet (instead of returning a worthless base context object).
* Omitting the call to `context.get_current_texture()` results in a warning instead of an exception.

Removed:

* Shadertoy util is removed from the wgpu-py. It is now available as a separate package: [wgpu-shadertoy](https://github.com/pygfx/shadertoy). ([#455](https://github.com/pygfx/wgpu-py/pull/455))

Fixed:

* Devices no longer leak memory.


### [v0.13.2] - 21-12-2023

Added:
Expand Down
2 changes: 1 addition & 1 deletion wgpu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from . import resources # noqa: F401,F403


__version__ = "0.13.2"
__version__ = "0.14.0"
version_info = tuple(map(int, __version__.split(".")))


Expand Down

0 comments on commit 2c39e7f

Please sign in to comment.