diff --git a/CHANGELOG.md b/CHANGELOG.md index 885b5b5..ed091a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # The aggdraw Library +## Version 1.3.19 + +- Add Python 3.13 wheels +- Remove Mac x86_64 wheels (pull requests welcome) +- Fix typo in documentation for tobytes usage + ## Version 1.3.18 - Remove "register" keyword from AGG C++ for compiler compatibility diff --git a/README.rst b/README.rst index 19da976..7e06bbc 100644 --- a/README.rst +++ b/README.rst @@ -102,5 +102,5 @@ with some modern compilers and coding styles. The aggdraw project has had to apply additional patches over time to fix compatibility or to retain backwards compatibility with previous versions of AGG to get the same end result. Some patches may be documented in README files, but all future patches should appear -in the `patches/` directory in the root of this repository and were applied with -commands such as `patch -p0 patches/tags_pointer_type_fix.patch`. +in the ``patches/`` directory in the root of this repository and were applied with +commands such as ``patch -p0 patches/tags_pointer_type_fix.patch``. diff --git a/setup.py b/setup.py index 67c261a..9299051 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ from packaging.version import Version from setuptools import setup, Extension -VERSION = "1.3.18.post0" +VERSION = "1.3.19" SUMMARY = "High quality drawing interface for PIL."