From 1e9ddd86e4469c5eabebf605dfd565a81b553c4b Mon Sep 17 00:00:00 2001 From: Hansimov <591172499@qq.com> Date: Thu, 17 Oct 2024 23:02:32 +0800 Subject: [PATCH] :pencil: [Doc] README: update example with latest feature, and upgrade to v1.1.9.1 --- README.md | 2 ++ pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 80da27e..7a09fe2 100644 --- a/README.md +++ b/README.md @@ -122,6 +122,8 @@ def test_list_of_dicts(): data = { "list_of_lists": [[1, 2, 3], ["a", "b", "c"]], "list_of_dicts": [{"key1": "dict1"}, {"key2": "dict2", "key3": "dict3"}], + "empty_list": [], + "empty_dict": {}, } print(dict_to_str(data, align_list=True)) diff --git a/pyproject.toml b/pyproject.toml index af257a6..3e5408a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "tclogger" -version = "1.1.9" +version = "1.1.9.1" authors = [ { name="Hansimov" }, ]