diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 084600ef1..7043b6056 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -1,9 +1,17 @@ pyglet 2.0.5 +Changes and Improvements +------------------------ +- windows.key: add support for extended function keys +- Windows now uses "Apartment Threaded" mode for better compatibility with other libraries. +- image: allow blanking newly created Textures (skipped by default when creating from image). + Bugfixes -------- - input.macos: Fix ControllerManager hot-plugging on macOS. - font.windows: Fix 32bit crashes with DirectWrite font backend. +- math: Fix incorrect calculation in Mat4.look_at method. +- image: Fix blitting from regions, caused by invalid unpacking settings. pyglet 2.0.4 diff --git a/pyglet/__init__.py b/pyglet/__init__.py index 8d53d057f..c6bda769a 100644 --- a/pyglet/__init__.py +++ b/pyglet/__init__.py @@ -9,7 +9,7 @@ from typing import TYPE_CHECKING #: The release version -version = '2.0.4' +version = '2.0.5' __version__ = version MIN_PYTHON_VERSION = 3, 8 diff --git a/setup.py b/setup.py index 6f23a7918..a1236f99f 100644 --- a/setup.py +++ b/setup.py @@ -38,10 +38,10 @@ 'Operating System :: Microsoft :: Windows', 'Operating System :: POSIX :: Linux', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', 'Topic :: Games/Entertainment', 'Topic :: Software Development :: Libraries :: Python Modules', ],