diff --git a/CHANGELOG.md b/CHANGELOG.md index bcc8f2b5..d93b4f38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,17 @@ 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.4.3...main) +# [main](https://github.com/szabolcsdombi/zengl/compare/1.5.0...main) + +# [1.5.0](https://github.com/szabolcsdombi/zengl/compare/1.4.3...1.5.0) + +- Implemented flush parameter for blitting +- Improved default for srgb parameter for blitting +- Fixed error checking for image blitting +- Fixed dependency list for examples +- Support binding uniform and attribute arrays +- Optimized binding global settings +- Deprecated line_width and front_face # [1.4.3](https://github.com/szabolcsdombi/zengl/compare/1.4.2...1.4.3) diff --git a/docs/conf.py b/docs/conf.py index 0389d45f..1e2c2564 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -2,7 +2,7 @@ copyright = '2022, Szabolcs Dombi' author = 'Szabolcs Dombi' -release = '1.4.3' +release = '1.5.0' extensions = [ 'sphinx_rtd_theme', diff --git a/setup.py b/setup.py index 246348a3..8572b1ea 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ setup( name='zengl', - version='1.4.3', + version='1.5.0', ext_modules=[ext], py_modules=['_zengl'], data_files=[('.', ['zengl.pyi'])],