Skip to content

Commit

Permalink
bump to version 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
szabolcsdombi committed Jan 13, 2024
1 parent a5764ad commit 00a2178
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/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

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.2.2"
release = "2.3.0"

extensions = []
templates_path = []
Expand Down
2 changes: 1 addition & 1 deletion examples/pygbag/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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/
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.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());
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion zengl.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 00a2178

Please sign in to comment.