diff --git a/CHANGELOG.md b/CHANGELOG.md index eabb6d6..42e1fe5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -# [main](https://github.com/szabolcsdombi/zengl/compare/2.5.1...main) +# [main](https://github.com/szabolcsdombi/zengl/compare/2.5.2...main) + +# [2.5.2](https://github.com/szabolcsdombi/zengl/compare/2.5.1...2.5.2) + +- Fixed the documentation # [2.5.1](https://github.com/szabolcsdombi/zengl/compare/2.5.0...2.5.1) diff --git a/docs/conf.py b/docs/conf.py index b4a8b37..94ffe78 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -2,7 +2,7 @@ copyright = '2024, Szabolcs Dombi' author = 'Szabolcs Dombi' -release = '2.5.1' +release = '2.5.2' extensions = [] templates_path = [] diff --git a/examples/pyodide/public/index.html b/examples/pyodide/public/index.html index 979c34e..0dbc45d 100644 --- a/examples/pyodide/public/index.html +++ b/examples/pyodide/public/index.html @@ -15,7 +15,7 @@ const pyodide = await loadPyodide(); pyodide.canvas.setCanvas3D(document.getElementById("canvas")); await pyodide.loadPackage([ - 'zengl-2.5.1-cp312-cp312-pyodide_2024_0_wasm32.whl', + 'zengl-2.5.2-cp312-cp312-pyodide_2024_0_wasm32.whl', ]); const main = await fetch('main.py'); pyodide.runPython(await main.text()); diff --git a/setup.py b/setup.py index 73becd4..56c21af 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ setup( name='zengl', - version='2.5.1', + version='2.5.2', ext_modules=[ext], py_modules=['_zengl'], license='MIT', diff --git a/zengl.c b/zengl.c index 2fd0289..dc69dda 100644 --- a/zengl.c +++ b/zengl.c @@ -3696,7 +3696,7 @@ static int module_exec(PyObject * self) { PyModule_AddObject(self, "_extern_gl", new_ref(Py_None)); #endif - PyModule_AddObject(self, "__version__", PyUnicode_FromString("2.5.1")); + PyModule_AddObject(self, "__version__", PyUnicode_FromString("2.5.2")); return 0; }