Skip to content

Commit 3a517c7

Browse files
authored
Bump version (#368)
* Bump version * fix docs? * try docs * rtd used old version of sphinx by default? * I guess this hack can be removed again?
1 parent 812f792 commit 3a517c7

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff 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

2336
Fixed:

docs/conf.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
import sys
1616
import shutil
1717

18+
1819
ROOT_DIR = os.path.abspath(os.path.join(__file__, "..", ".."))
1920
sys.path.insert(0, ROOT_DIR)
2021

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ def finalize_options(self):
3232
extra_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

3938
setup(

wgpu/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from .base import * # noqa: F401,F403
99
from .gui import WgpuCanvasInterface # noqa: F401,F403
1010

11-
__version__ = "0.9.4"
11+
__version__ = "0.9.5"
1212
version_info = tuple(map(int, __version__.split(".")))
1313

1414

0 commit comments

Comments
 (0)