diff --git a/.gitignore b/.gitignore index 129f426..d09bda5 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /dist /venv .vscode +.venv diff --git a/docs/changelog.rst b/docs/changelog.rst index fb8866f..5d5cdf8 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 0493435..a3da7a2 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 6f28521..3d56dca 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!