From cfd8aa07a320a6f0ee5d9082fc1b85cf5e947ae4 Mon Sep 17 00:00:00 2001 From: Matas Gumbinas Date: Sun, 29 Dec 2024 02:41:54 +0200 Subject: [PATCH] chore(readme): Update readme --- README.md | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4a0f9b1..8be8091 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ pprint(raw_obj_dict, indent=2) # Output: # {'some_value': 'wow'} -# Serialization with ability automatic deserialization: +# Serialization WITH automatic deserialization: obj_dict = obj.to_dict() pprint(obj_dict, indent=2) # Output: diff --git a/pyproject.toml b/pyproject.toml index ca25750..c81aa9c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ezserialization" -version = "0.2.9" +version = "0.2.10" description = "Simple, easy to use & transparent python objects serialization & deserialization." authors = ["Matas Gumbinas "] repository = "https://github.com/gMatas/ezserialization"