diff --git a/CHANGELOG.md b/CHANGELOG.md index 354787e4..81c5afcf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,11 @@ 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.8.4...main) +# [main](https://github.com/szabolcsdombi/zengl/compare/1.9.0...main) +# [1.9.0](https://github.com/szabolcsdombi/zengl/compare/1.8.4...1.9.0) + +- Implemented Pipeline uniforms - Implemented rendering to cubemap faces and array layers - Removed `zengl.pack()` - Removed `zengl.rgba()` diff --git a/docs/conf.py b/docs/conf.py index d09fc797..a2da3797 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -2,7 +2,7 @@ copyright = '2022, Szabolcs Dombi' author = 'Szabolcs Dombi' -release = '1.8.4' +release = '1.9.0' extensions = [] templates_path = [] diff --git a/setup.py b/setup.py index 7ce930e5..dc70c59f 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ setup( name='zengl', - version='1.8.4', + version='1.9.0', ext_modules=[ext], py_modules=['_zengl'], data_files=[('.', ['zengl.pyi'])],