diff --git a/CHANGELOG.md b/CHANGELOG.md index f853e18a..b0af530e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,19 @@ Possible sections in each release: * Security: in case of vulnerabilities. +### [v0.9.5] - 02-10-2023 + +Fixed: + +* Fixed setting the dpi awareness in the Qt backend, by correctly looking up the Qt version. + +Changed: + +* Links to readthedocs now point to *stable* instead of *latest*, so that people + reading the docs see these that reflect the latest release. +* Don't enable any features by default (previously WGPUNativeFeature_TEXTURE_ADAPTER_SPECIFIC_FORMAT_FEATURES was enabled). + + ### [v0.9.4] - 23-02-2023 Fixed: diff --git a/docs/conf.py b/docs/conf.py index 7a12110a..d198f66a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -15,6 +15,7 @@ import sys import shutil + ROOT_DIR = os.path.abspath(os.path.join(__file__, "..", "..")) sys.path.insert(0, ROOT_DIR) diff --git a/setup.py b/setup.py index be8c36c0..6c70b1ca 100644 --- a/setup.py +++ b/setup.py @@ -32,8 +32,7 @@ def finalize_options(self): extra_deps = { "jupyter": ["jupyter_rfb>=0.3.1"], "glfw": ["glfw>=1.9"], - # sphinx<7 because https://github.com/readthedocs/readthedocs.org/issues/10279 - "docs": ["sphinx<7", "sphinx_rtd_theme"], + "docs": ["sphinx>7.2", "sphinx_rtd_theme"], } setup( diff --git a/wgpu/__init__.py b/wgpu/__init__.py index 8231b742..602da878 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.9.4" +__version__ = "0.9.5" version_info = tuple(map(int, __version__.split(".")))