Skip to content

Commit

Permalink
Bump version + changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
einarf committed Dec 2, 2024
1 parent 1905451 commit c6531c0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion moderngl_window/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__",
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 = "[email protected]" }]
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit c6531c0

Please sign in to comment.