Skip to content

Commit

Permalink
Bump version (#368)
Browse files Browse the repository at this point in the history
* Bump version

* fix docs?

* try docs

* rtd used old version of sphinx by default?

* I guess this hack can be removed again?
  • Loading branch information
almarklein authored Oct 2, 2023
1 parent 812f792 commit 3a517c7
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
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

0 comments on commit 3a517c7

Please sign in to comment.