Skip to content

Commit

Permalink
bump to version 2.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
szabolcsdombi committed Oct 9, 2024
1 parent 20c9081 commit 6b805fd
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@ jobs:
steps:
- uses: actions/upload-artifact/merge@v4
with:
name: zengl-2.5.5
name: zengl-2.6.0
delete-merged: true
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,18 @@ 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.5.5...main)
# [main](https://github.com/szabolcsdombi/zengl/compare/2.6.0...main)

# [2.6.0](https://github.com/szabolcsdombi/zengl/compare/2.5.5...2.6.0)

- Implemented a builtin loader to avoid using ctypes
- Implemented `zengl.cleanup` to cleanup the objects stored at module level
- Implemented `Context.lost` flag
- Added the `Context.gc` missing stubs
- Moved the `zengl.default_loader` to `Context.loader`
- Fixed function pointer initialization flag type
- Fixed a one off memory leak in `zengl.init`
- Fixed the error message for the `Context.screen` setter

# [2.5.5](https://github.com/szabolcsdombi/zengl/compare/2.5.4...2.5.5)

Expand Down
2 changes: 1 addition & 1 deletion _zengl.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import sys
import textwrap

__version__ = '2.5.5'
__version__ = '2.6.0'

VERTEX_FORMAT = {
'uint8x2': (0x1401, 2, 0, 1),
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.5.5'
release = '2.6.0'

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.5.5-cp312-cp312-pyodide_2024_0_wasm32.whl',
'zengl-2.6.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 @@ -50,7 +50,7 @@

setup(
name='zengl',
version='2.5.5',
version='2.6.0',
ext_modules=[ext],
py_modules=['_zengl'],
license='MIT',
Expand Down

0 comments on commit 6b805fd

Please sign in to comment.