Skip to content

Commit

Permalink
bump to version 1.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
szabolcsdombi committed Oct 28, 2023
1 parent df049a8 commit 97e55ae
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
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 = '2023, Szabolcs Dombi'
author = 'Szabolcs Dombi'

release = '1.17.0'
release = '1.18.0'

extensions = []
templates_path = []
Expand Down
2 changes: 1 addition & 1 deletion examples/web/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
2 changes: 1 addition & 1 deletion examples/web/public/standalone.html
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@

setup(
name='zengl',
version='1.17.0',
version='1.18.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 @@ -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;
}
Expand Down

0 comments on commit 97e55ae

Please sign in to comment.