Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version #368

Merged
merged 5 commits into from
Oct 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import sys
import shutil


ROOT_DIR = os.path.abspath(os.path.join(__file__, "..", ".."))
sys.path.insert(0, ROOT_DIR)

Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion wgpu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(".")))


Expand Down
Loading