From 739fe81f6357d97e09de6ee2d344f7887b3acbea Mon Sep 17 00:00:00 2001 From: Szabolcs Dombi Date: Mon, 30 May 2022 12:25:49 +0300 Subject: [PATCH] bump to version 1.8.3 --- CHANGELOG.md | 8 +++++++- docs/conf.py | 2 +- docs/index.rst | 2 ++ setup.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f1f41e29..dd322daa 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.2...main) +# [main](https://github.com/szabolcsdombi/zengl/compare/1.8.3...main) + +# [1.8.3](https://github.com/szabolcsdombi/zengl/compare/1.8.2...1.8.3) + +- Fixed uniform buffer array members received a valid location parameter +- Deprecated `zengl.pack()` +- Deprecated `zengl.rgba()` # [1.8.2](https://github.com/szabolcsdombi/zengl/compare/1.8.1...1.8.2) diff --git a/docs/conf.py b/docs/conf.py index b16bab8a..bebfd22f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -2,7 +2,7 @@ copyright = '2022, Szabolcs Dombi' author = 'Szabolcs Dombi' -release = '1.8.2' +release = '1.8.3' extensions = [] templates_path = [] diff --git a/docs/index.rst b/docs/index.rst index 9082b175..7ff8023a 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -608,10 +608,12 @@ Utils .. py:method:: zengl.rgba(data: bytes, format: str) -> bytes +| *DEPRECATED* | Converts the image stored in data with the given format into rgba. .. py:method:: zengl.pack(*values: Iterable[float | int]) -> bytes +| *DEPRECATED* | Encodes floats and ints into bytes. .. py:method:: zengl.bind(buffer: Buffer, layout: str, *attributes: Iterable[int]) -> List[VertexBufferBinding] diff --git a/setup.py b/setup.py index f7a61562..1fd46c46 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ setup( name='zengl', - version='1.8.2', + version='1.8.3', ext_modules=[ext], py_modules=['_zengl'], data_files=[('.', ['zengl.pyi'])],