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"