File tree Expand file tree Collapse file tree 4 files changed +16
-3
lines changed Expand file tree Collapse file tree 4 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,19 @@ Possible sections in each release:
1818* Security: in case of vulnerabilities.
1919
2020
21+ ### [ v0.9.5] - 02-10-2023
22+
23+ Fixed:
24+
25+ * Fixed setting the dpi awareness in the Qt backend, by correctly looking up the Qt version.
26+
27+ Changed:
28+
29+ * Links to readthedocs now point to * stable* instead of * latest* , so that people
30+ reading the docs see these that reflect the latest release.
31+ * Don't enable any features by default (previously WGPUNativeFeature_TEXTURE_ADAPTER_SPECIFIC_FORMAT_FEATURES was enabled).
32+
33+
2134### [ v0.9.4] - 23-02-2023
2235
2336Fixed:
Original file line number Diff line number Diff line change 1515import sys
1616import shutil
1717
18+
1819ROOT_DIR = os .path .abspath (os .path .join (__file__ , ".." , ".." ))
1920sys .path .insert (0 , ROOT_DIR )
2021
Original file line number Diff line number Diff line change @@ -32,8 +32,7 @@ def finalize_options(self):
3232extra_deps = {
3333 "jupyter" : ["jupyter_rfb>=0.3.1" ],
3434 "glfw" : ["glfw>=1.9" ],
35- # sphinx<7 because https://github.com/readthedocs/readthedocs.org/issues/10279
36- "docs" : ["sphinx<7" , "sphinx_rtd_theme" ],
35+ "docs" : ["sphinx>7.2" , "sphinx_rtd_theme" ],
3736}
3837
3938setup (
Original file line number Diff line number Diff line change 88from .base import * # noqa: F401,F403
99from .gui import WgpuCanvasInterface # noqa: F401,F403
1010
11- __version__ = "0.9.4 "
11+ __version__ = "0.9.5 "
1212version_info = tuple (map (int , __version__ .split ("." )))
1313
1414
You can’t perform that action at this time.
0 commit comments