diff --git a/pyproject.toml b/pyproject.toml index 18d4e99..96b0f81 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "Remarshal" -version = "0.16.0" +version = "0.16.1" description = "Convert between CBOR, JSON, MessagePack, TOML, and YAML" authors = ["D. Bohdan "] license = "MIT" diff --git a/remarshal.py b/remarshal.py index 6da8653..ad898ea 100755 --- a/remarshal.py +++ b/remarshal.py @@ -20,7 +20,7 @@ import umsgpack # type: ignore import yaml -__version__ = "0.16.0" +__version__ = "0.16.1" FORMATS = ["cbor", "json", "msgpack", "toml", "yaml"]