Update readme and bump version

This commit is contained in:
Gonçalo Valério 2022-03-27 18:01:57 +01:00
parent bba3e6024b
commit 373ed13ef5
Signed by: dethos
GPG Key ID: DF557F2BDCC2445E
4 changed files with 5 additions and 3 deletions

View File

@ -21,6 +21,8 @@ Inline content that is currently detected:
* ``<script></script>`` tags
* ``<style></style>`` tags
* Many event handlers defined in element/tag attributes
* Styles defined directly in the element/tag using the ``style`` attribute
Installation

View File

@ -1,4 +1,4 @@
from .lib import parse
__version__ = "0.0.2"
__version__ = "0.0.3"
__all__ = ["parse"]

View File

@ -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 <gon@ovalerio.net>"]
homepage = "https://github.com/dethos/inlinehashes"

View File

@ -163,4 +163,4 @@ class TestParse:
def test_version():
assert __version__ == "0.0.2"
assert __version__ == "0.0.3"