diff --git a/CHANGELOG.md b/CHANGELOG.md index 312377f3..f1f41e29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,13 @@ 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.1...main) +# [main](https://github.com/szabolcsdombi/zengl/compare/1.8.2...main) + +# [1.8.2](https://github.com/szabolcsdombi/zengl/compare/1.8.1...1.8.2) + +- Fixed attribute array and uniform array location +- Fixed broken linker error formatting +- Added glcontext as a dependency # [1.8.1](https://github.com/szabolcsdombi/zengl/compare/1.8.0...1.8.1) diff --git a/docs/conf.py b/docs/conf.py index 5acf0e89..b16bab8a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -2,7 +2,7 @@ copyright = '2022, Szabolcs Dombi' author = 'Szabolcs Dombi' -release = '1.8.1' +release = '1.8.2' extensions = [] templates_path = [] diff --git a/setup.py b/setup.py index 46ceed83..f7a61562 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ setup( name='zengl', - version='1.8.1', + version='1.8.2', ext_modules=[ext], py_modules=['_zengl'], data_files=[('.', ['zengl.pyi'])],