From 2e4ad6d761274ca3ef519035aa3570dff29e4da0 Mon Sep 17 00:00:00 2001 From: Fabien LOISON Date: Sat, 29 Oct 2022 13:37:12 +0200 Subject: [PATCH] v1.2.2 --- README.rst | 32 ++++++++++++++++++-------------- RELEASE.rst | 3 ++- setup.py | 2 +- yoga/version.py | 2 +- 4 files changed, 22 insertions(+), 17 deletions(-) diff --git a/README.rst b/README.rst index 6c549dc..5ab8846 100644 --- a/README.rst +++ b/README.rst @@ -56,31 +56,35 @@ Changelog * **[NEXT]** (changes on ``master`` that have not been released yet): + * Nothing yet :) + +* **v1.2.2:** + * Updated the code to not use deprecated constants on newer Pillow versions * Various typo fixed (@kianmeng, #45) * Added Python 3.11 support -* **1.2.1:** +* **v1.2.1:** * No change: fix an upload error on PYPI -* **1.2.0:** +* **v1.2.0:** * Add color quantization options (based on libimagequant) * ``arm64`` and ``universal2`` wheels for macOS * ``x86`` and ``x68_64`` wheels for musl-based Linux distro (Alpine,...) * **MAINTAINERS:** New dependency: `imagequant `_ -* **1.1.2:** +* **v1.1.2:** * Add flag to CFFI builder to fix MacOS build -* **1.1.1 (not published):** +* **v1.1.1 (not published):** * JPEG: ignore invalid values for the orientation tag (#38) * Python 3.10 support and wheels -* **1.1.0:** +* **v1.1.0:** * **JPEG Optimization:** @@ -110,7 +114,7 @@ Changelog * new dependency to `mozjpeg-lossless-optimization `_ -* **1.0.0:** +* **v1.0.0:** * WEBP (lossy and lossless) images supported as output format * PNG default optimization preset changed to a 10× faster preset (old preset @@ -122,42 +126,42 @@ Changelog * ASSIMP library updated * WARNING: This is the last version to actively support Python 2.7! -* **0.11.1:** +* **v0.11.1:** * Automated workflow for deploying the PyPI packages * Wheel are now distributed on PyPI -* **0.11.0:** +* **v0.11.0:** * Allows to build YOGA on Windows * Scripts and workflow to build Windows standalone versions -* **0.10.2:** +* **v0.10.2:** * Updates assimp and python libraries -* **0.10.1:** +* **v0.10.1:** * Fixes an issue that occurs when output file does not already exist -* **0.10.0:** +* **v0.10.0:** * Prevent overwriting of the output file when an error occurs (#17) * Unicode path support (#16) -* **0.10.0b1:** +* **v0.10.0b1:** * Verbose and quiet modes, * Allows to pass textures from memory instead of looking on the filesystem, * Allows to pass a fallback texture instead of raising an error. -* **0.9.1b1:** +* **v0.9.1b1:** * Automatic selection of the output format (png or jpeg), * Prevent duplication of textures that are shared between materials, * Fixes Windows paths of textures. -* **0.9.0b1:** First release (only GLB output for models, no image auto +* **v0.9.0b1:** First release (only GLB output for models, no image auto output format) diff --git a/RELEASE.rst b/RELEASE.rst index 9ec5c34..4f2fd74 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -29,8 +29,9 @@ Publish source dist and wheels on PyPI. → Automated :) -3. Publish Github Release +4. Publish Github Release ~~~~~~~~~~~~~~~~~~~~~~~~~ * Make a release on Github * Add changelog +* Add Windows standalone build from the CI (``winbuild`` workflow) diff --git a/setup.py b/setup.py index f859164..624872f 100644 --- a/setup.py +++ b/setup.py @@ -72,7 +72,7 @@ def build_extensions(self): setup( name="yoga", - version="1.2.1", + version="1.2.2", description="Yummy Optimizer for Gorgeous Assets", url="https://github.com/wanadev/yoga", project_urls={ diff --git a/yoga/version.py b/yoga/version.py index 91aa66d..fbe7cc2 100644 --- a/yoga/version.py +++ b/yoga/version.py @@ -1 +1 @@ -VERSION = "1.1.2" +VERSION = "1.2.2"