Skip to content

Commit e89d438

Browse files
committed
main branch merged rel branch
2 parents 90bb0b9 + 69d37bc commit e89d438

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ Personal Python utility collection library.
2525
- Full path: `lyc_pyutils.libs.dotdict.DotDict`
2626
- Shortcut: `lyc_pyutils.DotDict`
2727

28-
Dot dictionary.
28+
Dot dictionary, API version 2.
29+
30+
**Not API-compatible with the API version 1 dot dictionary.**
2931

3032
Python interactive shell demo use case:
3133

@@ -52,7 +54,7 @@ Hello
5254
>>> print(sample.attr5.hello)
5355
World
5456
>>>
55-
>>> sample2 = sample.todict____()
57+
>>> sample2 = sample.to_dict____()
5658
>>> print(sample2)
5759
{'attr1': 1, 'attr2': 1.1, 'attr3': True, 'attr4': 'Hello', 'attr5': {'hello': 'World'}}
5860
>>>

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
def main():
2323
_setup(
2424
name="lyc-pyutils",
25-
version="2.0.0",
25+
version="2.0.1",
2626
author="Yucheng Liu",
2727
license="Copyright (C) 2022 Yucheng Liu. GNU LGPL3 license.",
2828
description="LYC's personal Python utilities.",

0 commit comments

Comments
 (0)