bump version and update readme

This commit is contained in:
Gonçalo Valério 2023-01-25 22:37:30 +00:00
parent b243cacd9a
commit eb6f2e97e0
Signed by: dethos
GPG Key ID: DF557F2BDCC2445E
4 changed files with 4 additions and 4 deletions

View File

@ -61,7 +61,7 @@ Here is an example of the output:
.. code:: .. code::
$inlinehashes https://ovalerio.net -a sha384 $inlinehashes https://ovalerio.net -a sha384 -o json
[ [
{ {
"content": "\n html {\n height: 100%;\n }\n ", "content": "\n html {\n height: 100%;\n }\n ",

View File

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

View File

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "inlinehashes" name = "inlinehashes"
version = "0.0.4" version = "0.0.5"
description = "Hash generator for HTML inline styles and scripts" description = "Hash generator for HTML inline styles and scripts"
authors = ["Gonçalo Valério <gon@ovalerio.net>"] authors = ["Gonçalo Valério <gon@ovalerio.net>"]
homepage = "https://github.com/dethos/inlinehashes" homepage = "https://github.com/dethos/inlinehashes"

View File

@ -217,4 +217,4 @@ class TestParse:
def test_version(): def test_version():
assert __version__ == "0.0.4" assert __version__ == "0.0.5"