diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e11c56c..a97770fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,9 @@ 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.2.2...main) +# [main](https://github.com/szabolcsdombi/zengl/compare/2.3.0...main) + +# [2.3.0](https://github.com/szabolcsdombi/zengl/compare/2.2.2...2.3.0) - Removed srgb image formats diff --git a/docs/conf.py b/docs/conf.py index cc367b38..834b10d8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -2,7 +2,7 @@ copyright = "2024, Szabolcs Dombi" author = "Szabolcs Dombi" -release = "2.2.2" +release = "2.3.0" extensions = [] templates_path = [] diff --git a/examples/pygbag/Containerfile b/examples/pygbag/Containerfile index c01a2b9a..0dc9a659 100644 --- a/examples/pygbag/Containerfile +++ b/examples/pygbag/Containerfile @@ -8,7 +8,7 @@ RUN python3 -m pip install pygbag COPY zengl-stubs /zengl/zengl-stubs COPY setup.py MANIFEST.in README.md zengl.c _zengl.py _zengl_js.py /zengl/ RUN cd /zengl/ && /opt/python-wasm-sdk/python3-wasm setup.py bdist_wheel -RUN unzip /zengl/dist/zengl-2.2.2-cp311-cp311-wasm32_bi_emscripten.whl -d /web/ +RUN unzip /zengl/dist/zengl-2.3.0-cp311-cp311-wasm32_bi_emscripten.whl -d /web/ COPY examples/pygbag/public /web CMD python3 -m pygbag --template noctx.tmpl /web/ diff --git a/examples/pyodide/public/index.html b/examples/pyodide/public/index.html index 9d64ed44..398949bf 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.2.2-cp311-cp311-emscripten_3_1_45_wasm32.whl', + 'zengl-2.3.0-cp311-cp311-emscripten_3_1_45_wasm32.whl', ]); const main = await fetch('main.py'); pyodide.runPython(await main.text()); diff --git a/setup.py b/setup.py index 9e7b57cf..8461a6fa 100644 --- a/setup.py +++ b/setup.py @@ -74,7 +74,7 @@ def get_tag(self): setup( name="zengl", - version="2.2.2", + version="2.3.0", ext_modules=[ext], py_modules=["_zengl", "_zengl_js"], license="MIT", diff --git a/zengl.c b/zengl.c index 588a8487..eea83c1c 100644 --- a/zengl.c +++ b/zengl.c @@ -3686,7 +3686,7 @@ static int module_exec(PyObject * self) { PyModule_AddObject(self, "calcsize", PyObject_GetAttrString(state->helper, "calcsize")); PyModule_AddObject(self, "bind", PyObject_GetAttrString(state->helper, "bind")); - PyModule_AddObject(self, "__version__", PyUnicode_FromString("2.2.2")); + PyModule_AddObject(self, "__version__", PyUnicode_FromString("2.3.0")); return 0; }