Skip to content

Commit

Permalink
bump to version 2.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
szabolcsdombi committed Feb 10, 2024
1 parent 50a0243 commit 499469c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,16 @@ 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.4.0...main)
# [main](https://github.com/szabolcsdombi/zengl/compare/2.4.1...main)

# [2.4.1](https://github.com/szabolcsdombi/zengl/compare/2.4.0...2.4.1)

- Fixed detection for both egl and x11 context types

# [2.4.0](https://github.com/szabolcsdombi/zengl/compare/2.3.0...2.4.0)

- Improved wayland support
- Added automaic detection for both egl and x11 context types
- Added detection for both egl and x11 context types
- Fixed default argument value for reset in `Context.new_frame`
- Fixed the error message for multiple missing gl functions
- Changed `Image.blit` parameters to `offset`, `size` and `crop`
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 = '2024, Szabolcs Dombi'
author = 'Szabolcs Dombi'

release = '2.4.0'
release = '2.4.1'

extensions = []
templates_path = []
Expand Down
2 changes: 1 addition & 1 deletion examples/pyodide/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
const pyodide = await loadPyodide();
pyodide.canvas.setCanvas3D(document.getElementById("canvas"));
await pyodide.loadPackage([
'zengl-2.4.0-cp311-abi3-emscripten_3_1_46_wasm32.whl',
'zengl-2.4.1-cp311-abi3-emscripten_3_1_46_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 @@ -77,7 +77,7 @@ def get_tag(self):

setup(
name='zengl',
version='2.4.0',
version='2.4.1',
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 @@ -3716,7 +3716,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.0"));
PyModule_AddObject(self, "__version__", PyUnicode_FromString("2.4.1"));

return 0;
}
Expand Down

0 comments on commit 499469c

Please sign in to comment.