Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
einarf committed May 18, 2023
1 parent cfa8829 commit 0aed48e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

## 2.4.3

* Added `--backend` option to specify context backend.
This is mostly for the headless window to enable EGL.
* Window now has a ``backend`` property containing the name of the context backend
* Window now has a ``headless`` boolean property to check if the window is headless.
This is useful for adding headless only paths in your code.
* Added stencil bits to window framebuffers by default

## 2.4.3

* Fix compatibility with moderngl 5.8.x
* Camera now has keymap support (QWERTY, AZERTY etc)

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ def __getattr__(cls, name):
# -- Project information -----------------------------------------------------

project = 'moderngl-window'
copyright = '2019, Einar Forselv'
copyright = '2023, Einar Forselv'
author = 'Einar Forselv'

# The short X.Y version
version = '2.4.3'
version = '2.4.4'
# The full version, including alpha/beta/rc tags
release = version

Expand Down
2 changes: 1 addition & 1 deletion moderngl_window/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from moderngl_window.utils.module_loading import import_string
from moderngl_window.utils.keymaps import KeyMapFactory, KeyMap, QWERTY, AZERTY # noqa

__version__ = "2.4.3"
__version__ = "2.4.4"

IGNORE_DIRS = [
"__pycache__",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="moderngl-window",
version="2.4.3",
version="2.4.4",
description="A cross platform helper library for ModernGL making window creation and resource loading simple",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 0aed48e

Please sign in to comment.