diff --git a/CHANGELOG.md b/CHANGELOG.md index 62560cb9..83b73172 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,7 +18,7 @@ Possible sections in each release: * Security: in case of vulnerabilities. -### [v0.7.0] - TBD +### [v0.7.0] - 21-12-2021 Changed: @@ -26,6 +26,7 @@ Changed: * The `[[block]]` syntax in shaders has been dropped. * Renamed `ProgrammableStage.clamp_depth` -> `unclipped_depth`. + ### [v0.6.0] - 16-12-2021 Added: diff --git a/wgpu/__init__.py b/wgpu/__init__.py index 06f66f39..e924fa07 100644 --- a/wgpu/__init__.py +++ b/wgpu/__init__.py @@ -8,7 +8,7 @@ from .base import * # noqa: F401,F403 from .gui import WgpuCanvasInterface # noqa: F401,F403 -__version__ = "0.6.0" +__version__ = "0.7.0" version_info = tuple(map(int, __version__.split(".")))