From 81737a078271d374dee1a1ac04ec4f38090749d1 Mon Sep 17 00:00:00 2001 From: zerolab Date: Fri, 4 Aug 2023 16:40:40 +0100 Subject: [PATCH] Bump version to 1.5.2 --- .gitignore | 1 + docs/changelog.rst | 6 ++++++ setup.py | 2 +- willow/__init__.py | 2 +- 4 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 129f4264..d09bda5b 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /dist /venv .vscode +.venv diff --git a/docs/changelog.rst b/docs/changelog.rst index fb8866fb..5d5cdf8d 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,12 @@ Changelog ========= +1.5.2 (2023-08-04) +---------------- + + - Fix ``NUMBER_PATTERN`` regex for parsing SVG viewboxes (Joshua Munn) + + 1.5.1 (2023-07-06) ------------------ diff --git a/setup.py b/setup.py index 04934354..a3da7a23 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ setup( name='Willow', - version="1.5.1", # Update willow/__init__.py too! + version="1.5.2", # Update willow/__init__.py too! description='A Python image library that sits on top of Pillow, Wand and OpenCV', author='Karl Hobley', author_email='karl@kaed.uk', diff --git a/willow/__init__.py b/willow/__init__.py index 6f28521d..3d56dca6 100644 --- a/willow/__init__.py +++ b/willow/__init__.py @@ -44,4 +44,4 @@ def setup(): setup() -__version__ = "1.5.1" +__version__ = "1.5.2" # update setup.cfg too!