From 8b9d5b5ce115187cec5d5d5605ae29b9bc9d5715 Mon Sep 17 00:00:00 2001 From: Szabolcs Dombi Date: Wed, 9 Nov 2022 15:06:08 +0200 Subject: [PATCH] bump to version 1.9.3 --- CHANGELOG.md | 7 ++++++- README.md | 14 -------------- docs/conf.py | 2 +- setup.py | 2 +- 4 files changed, 8 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d8753c5..6544236d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,12 @@ 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.9.2...main) +# [main](https://github.com/szabolcsdombi/zengl/compare/1.9.3...main) + +# [1.9.3](https://github.com/szabolcsdombi/zengl/compare/1.9.2...1.9.3) + +- Moved zengl.pyi to zengl-stubs +- Fixed missing type hinting # [1.9.2](https://github.com/szabolcsdombi/zengl/compare/1.9.1...1.9.2) diff --git a/README.md b/README.md index 8134d3c0..cfb3be5b 100644 --- a/README.md +++ b/README.md @@ -196,17 +196,3 @@ Image.frombuffer('RGBA', size, image.read(), 'raw', 'RGBA', 0, -1).save('hello.p [![linting_06](https://github.com/szabolcsdombi/zengl-example-images/raw/examples/linting/linting_06.png)](#typehints) [![linting_07](https://github.com/szabolcsdombi/zengl-example-images/raw/examples/linting/linting_07.png)](#typehints) - -**Not Working?** - -It is a known issue that at the moment on linux with venv the pyi file is not distributed properly. - -To fix this issue please download the [zengl.pyi](https://github.com/szabolcsdombi/zengl/raw/main/zengl.pyi) file -and place it either in you project's root or next to the zengl binary. -To locate the installation just inspect `zengl.__file__`. - -```py ->>> import zengl ->>> zengl.__file__ -'...' -``` diff --git a/docs/conf.py b/docs/conf.py index 385217cb..970a30d6 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -2,7 +2,7 @@ copyright = '2022, Szabolcs Dombi' author = 'Szabolcs Dombi' -release = '1.9.2' +release = '1.9.3' extensions = [] templates_path = [] diff --git a/setup.py b/setup.py index fd4e32a6..faa14bcc 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ setup( name='zengl', - version='1.9.2', + version='1.9.3', ext_modules=[ext], py_modules=['_zengl'], packages=['zengl-stubs'],