diff --git a/pyWebLayout/__init__.py b/pyWebLayout/__init__.py index 240043d..345308a 100644 --- a/pyWebLayout/__init__.py +++ b/pyWebLayout/__init__.py @@ -8,7 +8,7 @@ supports pagination for ebook-like content with the ability to pause, save state, and resume rendering. """ -__version__ = '0.1.0' +__version__ = '0.1.1' # Core abstractions diff --git a/setup.cfg b/setup.cfg index 827766e..be59e20 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = pyWebLayout -version = 0.1.0 +version = 0.1.1 author = Duncan Tourolle author_email = duncan@tourolle.paris description = A Python library for HTML-like layout and rendering diff --git a/setup.py b/setup.py index 4047971..2b341cb 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup( name="pyWebLayout", - version="0.1.0", + version="0.1.1", packages=find_packages(), install_requires=[ "Pillow",