mirror of https://github.com/dethos/inlinehashes
Update readme and bump version
parent
bba3e6024b
commit
373ed13ef5
|
@ -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
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
from .lib import parse
|
||||
|
||||
__version__ = "0.0.2"
|
||||
__version__ = "0.0.3"
|
||||
__all__ = ["parse"]
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -163,4 +163,4 @@ class TestParse:
|
|||
|
||||
|
||||
def test_version():
|
||||
assert __version__ == "0.0.2"
|
||||
assert __version__ == "0.0.3"
|
||||
|
|
Loading…
Reference in New Issue