diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c31107..31e3f83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 3.0.3 + +* Fixed a potential division by zero issue in timers +* Fixed the video player example + +Thanks to @Leterax for the contributions to this release. + ## 3.0.2 * Fixed an issue causing `BaseWindow.init_mgl_context` to fail if no context diff --git a/docs/conf.py b/docs/conf.py index 771b936..d558874 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -60,7 +60,7 @@ def __getattr__(cls: Any, name: Any) -> MagicMock: author = "Einar Forselv" # The short X.Y version -version = "3.0.2" +version = "3.0.3" # The full version, including alpha/beta/rc tags release = version diff --git a/moderngl_window/__init__.py b/moderngl_window/__init__.py index 565ab45..e86d721 100644 --- a/moderngl_window/__init__.py +++ b/moderngl_window/__init__.py @@ -19,7 +19,7 @@ from moderngl_window.utils.keymaps import AZERTY, QWERTY, KeyMap, KeyMapFactory # noqa from moderngl_window.utils.module_loading import import_string -__version__ = "3.0.2" +__version__ = "3.0.3" IGNORE_DIRS = [ "__pycache__", diff --git a/pyproject.toml b/pyproject.toml index 7a31922..54c4898 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "moderngl-window" -version = "3.0.2" +version = "3.0.3" description = "A cross platform helper library for ModernGL making window creation and resource loading simple" readme = "README.md" authors = [{ name = "Einar Forselv", email = "eforselv@gmail.com" }] @@ -59,6 +59,7 @@ glfw = ["glfw"] pyqt5 = ["PyQt5"] PySide2 = ["PySide2<6"] pdf = ["ReportLab>=1.2"] +av = ["av"] [project.urls] Source = "https://github.com/moderngl/moderngl_window"