From 0aed48e602a3e26fcddbfb495898f7145a8cfc6b Mon Sep 17 00:00:00 2001 From: Einar Forselv Date: Thu, 18 May 2023 13:02:26 +0200 Subject: [PATCH] Bump version --- CHANGELOG.md | 9 +++++++++ docs/conf.py | 4 ++-- moderngl_window/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cf6c9c9..43a1132 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/docs/conf.py b/docs/conf.py index 19cdef3..831f201 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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 diff --git a/moderngl_window/__init__.py b/moderngl_window/__init__.py index b5e58db..3c3c5d4 100644 --- a/moderngl_window/__init__.py +++ b/moderngl_window/__init__.py @@ -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__", diff --git a/setup.py b/setup.py index c236cf2..12a0000 100644 --- a/setup.py +++ b/setup.py @@ -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',