diff --git a/README.rst b/README.rst index 949db61..cb663a0 100644 --- a/README.rst +++ b/README.rst @@ -61,7 +61,7 @@ Here is an example of the output: .. code:: - $inlinehashes https://ovalerio.net -a sha384 + $inlinehashes https://ovalerio.net -a sha384 -o json [ { "content": "\n html {\n height: 100%;\n }\n ", diff --git a/inlinehashes/__init__.py b/inlinehashes/__init__.py index 8f86ddf..2203be9 100644 --- a/inlinehashes/__init__.py +++ b/inlinehashes/__init__.py @@ -1,4 +1,4 @@ from .lib import parse -__version__ = "0.0.4" +__version__ = "0.0.5" __all__ = ["parse"] diff --git a/pyproject.toml b/pyproject.toml index dc89a7a..35dd249 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "inlinehashes" -version = "0.0.4" +version = "0.0.5" 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 7f46663..0280109 100644 --- a/tests/test_inlinehashes.py +++ b/tests/test_inlinehashes.py @@ -217,4 +217,4 @@ class TestParse: def test_version(): - assert __version__ == "0.0.4" + assert __version__ == "0.0.5"