From 6462a41fd68b0043fe7a1099263c2d758f076411 Mon Sep 17 00:00:00 2001 From: David Hoese Date: Wed, 11 Sep 2024 11:44:17 -0500 Subject: [PATCH] Update release notes for 1.3.19 --- CHANGELOG.md | 6 ++++++ README.rst | 4 ++-- setup.py | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) 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."