Skip to content

Commit

Permalink
bump to version 2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
szabolcsdombi committed Jun 26, 2024
1 parent cc044e0 commit 26e18a3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
copyright = '2024, Szabolcs Dombi'
author = 'Szabolcs Dombi'

release = '2.4.1'
release = '2.5.0'

extensions = []
templates_path = []
Expand Down
4 changes: 2 additions & 2 deletions examples/pyodide/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
</head>
<body>
<canvas id="canvas"></canvas>
<script src="https://cdn.jsdelivr.net/pyodide/v0.25.0/full/pyodide.js"></script>
<script src="https://cdn.jsdelivr.net/pyodide/v0.26.1/full/pyodide.js"></script>
<script>
(async () => {
const pyodide = await loadPyodide();
pyodide.canvas.setCanvas3D(document.getElementById("canvas"));
await pyodide.loadPackage([
'zengl-2.4.1-cp311-abi3-emscripten_3_1_46_wasm32.whl',
'zengl-2.5.0-cp312-cp312-pyodide_2024_0_wasm32.whl',
]);
const main = await fetch('main.py');
pyodide.runPython(await main.text());
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def get_tag(self):

setup(
name='zengl',
version='2.4.1',
version='2.5.0',
ext_modules=[ext],
py_modules=['_zengl'],
license='MIT',
Expand Down
2 changes: 1 addition & 1 deletion zengl.c
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.1"));
PyModule_AddObject(self, "__version__", PyUnicode_FromString("2.5.0"));

return 0;
}
Expand Down

0 comments on commit 26e18a3

Please sign in to comment.