diff --git a/README.md b/README.md
index 6ecd7cd..86c42d2 100644
--- a/README.md
+++ b/README.md
@@ -164,6 +164,7 @@ def test_dict_to_str():
         "now": get_now_str(),
         "list": [1, 2, 3, [4, 5], "6"],
         "nested": {"key1": "value1", "key2": "value2", "key_3": {"subkey": "subvalue"}},
+        "中文Key": "中文Value",
     }
     s = dict_to_str(d, add_quotes=True, max_depth=1)
     logger.success(s)
diff --git a/pyproject.toml b/pyproject.toml
index b771cdb..d87dc30 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [project]
 name = "tclogger"
-version = "1.2.7"
+version = "1.2.7.1"
 authors = [
     { name="Hansimov" },
 ]