From 97e55ae8a4ac02f808f8e927abccacfa51fdf5f3 Mon Sep 17 00:00:00 2001 From: Szabolcs Dombi Date: Sat, 28 Oct 2023 14:57:58 +0300 Subject: [PATCH] bump to version 1.18.0 --- CHANGELOG.md | 4 +++- docs/conf.py | 2 +- examples/web/public/index.html | 2 +- examples/web/public/standalone.html | 2 +- setup.py | 2 +- zengl.c | 2 +- 6 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 26157f5e..45fe52cf 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/1.17.0...main) +# [main](https://github.com/szabolcsdombi/zengl/compare/1.18.0...main) + +# [1.18.0](https://github.com/szabolcsdombi/zengl/compare/1.17.0...1.18.0) - Added subinterpreter support - Removed global reference for the default loader diff --git a/docs/conf.py b/docs/conf.py index 66b3ff15..8cb7be2c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -2,7 +2,7 @@ copyright = '2023, Szabolcs Dombi' author = 'Szabolcs Dombi' -release = '1.17.0' +release = '1.18.0' extensions = [] templates_path = [] diff --git a/examples/web/public/index.html b/examples/web/public/index.html index 69d596b0..1694135e 100644 --- a/examples/web/public/index.html +++ b/examples/web/public/index.html @@ -15,7 +15,7 @@ const pyodide = await loadPyodide(); await pyodide.loadPackage([ 'glwindow-0.1.0-cp311-cp311-emscripten_3_1_45_wasm32.whl', - 'zengl-1.17.0-cp311-cp311-emscripten_3_1_45_wasm32.whl', + 'zengl-1.18.0-cp311-cp311-emscripten_3_1_45_wasm32.whl', 'numpy', ], { messageCallback() {} }); const response = await fetch('examples.tar.gz'); diff --git a/examples/web/public/standalone.html b/examples/web/public/standalone.html index 78ae5469..610ea0d2 100644 --- a/examples/web/public/standalone.html +++ b/examples/web/public/standalone.html @@ -14,7 +14,7 @@ (async () => { const pyodide = await loadPyodide(); await pyodide.loadPackage([ - 'zengl-1.17.0-cp311-cp311-emscripten_3_1_45_wasm32.whl', + 'zengl-1.18.0-cp311-cp311-emscripten_3_1_45_wasm32.whl', ]); pyodide.runPython(` import zengl diff --git a/setup.py b/setup.py index 6d505834..ca44c4ee 100644 --- a/setup.py +++ b/setup.py @@ -58,7 +58,7 @@ setup( name='zengl', - version='1.17.0', + version='1.18.0', ext_modules=[ext], py_modules=['_zengl'], license='MIT', diff --git a/zengl.c b/zengl.c index 2db1952b..54298258 100644 --- a/zengl.c +++ b/zengl.c @@ -3478,7 +3478,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("1.17.0")); + PyModule_AddObject(self, "__version__", PyUnicode_FromString("1.18.0")); return 0; }