bumpy version
Some checks failed
Python CI / test (push) Failing after 45s

This commit is contained in:
Duncan Tourolle 2025-11-08 23:59:53 +01:00
parent 4c99282aef
commit f070121e5c
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -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",