From 373ed13ef54fa303a31def8c05f4f6b8b981bd83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gon=C3=A7alo=20Val=C3=A9rio?= Date: Sun, 27 Mar 2022 18:01:57 +0100 Subject: [PATCH] Update readme and bump version --- README.rst | 2 ++ inlinehashes/__init__.py | 2 +- pyproject.toml | 2 +- tests/test_inlinehashes.py | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 9f75222..1b97fb3 100644 --- a/README.rst +++ b/README.rst @@ -21,6 +21,8 @@ Inline content that is currently detected: * ```` tags * ```` tags +* Many event handlers defined in element/tag attributes +* Styles defined directly in the element/tag using the ``style`` attribute Installation diff --git a/inlinehashes/__init__.py b/inlinehashes/__init__.py index 8a10b94..246df41 100644 --- a/inlinehashes/__init__.py +++ b/inlinehashes/__init__.py @@ -1,4 +1,4 @@ from .lib import parse -__version__ = "0.0.2" +__version__ = "0.0.3" __all__ = ["parse"] diff --git a/pyproject.toml b/pyproject.toml index eab0c7c..d55a089 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "inlinehashes" -version = "0.0.2" +version = "0.0.3" description = "Hash generator for HTML inline styles and scripts" authors = ["Gonçalo Valério "] homepage = "https://github.com/dethos/inlinehashes" diff --git a/tests/test_inlinehashes.py b/tests/test_inlinehashes.py index fc844a6..43ae391 100644 --- a/tests/test_inlinehashes.py +++ b/tests/test_inlinehashes.py @@ -163,4 +163,4 @@ class TestParse: def test_version(): - assert __version__ == "0.0.2" + assert __version__ == "0.0.3"